html4-ex | Lecture - 0Slide 2 : 3 |
|
(load "html4-loading-stuff.scm")
(define _ #f)
(html-write
(html
(head
(title "Here is the title")
)
(body
(h1 "A header")
"Here comes the" (em "document text") _ ", with an " (b "enumeration") _ "." (p)
(ul 'type "square"
(li "Item 1" _ ";")
(li "Item 2" _ ";")
(li "Item 3" _ ".")
)
(a 'href "../html/lugm99.html" "A link to the table of contents") _ "." (br)
"And finally some more " (kbd "text")_"."
)
)
) |
|