<!-- XHTML:Basics snippet 1. --> <!-- XHTML Transitional template. --> <!-- Place the following at the very top of the page: declare the DTD --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- define the XML namespace --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <!-- the safest way at present to declare the character encoding is with a meta tag in the head of the document --> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Page title</title> <!-- define a description of your page --> <meta name="description" content="Write your phrase here." /> <meta name="keywords" content="key, words, here" /> </head> <body> <p>This is some content.</p> </body> </html>