HtmlPage Example
This is typical use case the htmlpage macro.
Smartsite SXML | Copy Code |
---|---|
<se:htmlpage xmlns:se="http://smartsite.nl/namespaces/sxml/1.0" doctype="html401transitional" > <html> <head> <title>A page title</title> </head> <body> Here comes the body. </body> </html> </se:htmlpage> |
Example Result | Copy Code |
---|---|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>A page title</title> </head> <body> Here comes the body. </body> </html> |