Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'  Annotated program -- Keyboard shortcut: 't'    doc0.laml - The same document as an LAML expression.Lecture 7 - slide 2 : 24
Program 2

(html
 (head 
  (title "This is the document title")
 )

 (body 
  (h1 "Document title")

  (p "Here is the first paragraph of the document")

  (p "The second paragraph has an" (em "emphasized item")
      "and a" (b "bold face item") _ ".")
  )
)