After defining the document type, the <html> tag starts
the rest of the document and the </html> tag ends it.
These tags are used only once in each XHTML document.
NOTE: This tag is required for an XHTML document to validate.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>
<body>
Welcome to the world of HTML!
</body>
</html>