Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  41 secondsLecture 2 - slide 44 : 46
Program 2
(load (string-append laml-dir "laml.scm"))
(laml-style "simple-xhtml1.0-transitional-validating")

(define (www-document the-title . body-forms)
 (html
  (head (title the-title))
  (body body-forms)))

(www-document   
  "This is the document title"
  (h1 "Document title")

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

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