HTML <html> Element
The <html> element tells the user agent (browser) that the page is constructed using HTML or Hypertext Mark-up Language. The html element is the
outermost element in HTML and XHTML documents and also known as the root element.
The <html> element is one of the principal structural elements and fits into the layout of a document in the following
way:
<!DOCTYPE>
<html>
<head>
<title>......</title>
</head>
<body>
PAGE CONTENT
</body>
</html>
In order for an XHTML document to validate and conform to W3C specifications the <html> element must also contain
an xmlns declaration for the XHTML namespace. This declaration is written:
<html xmlns="http://www.w3.org/1999/xhtml">
<html> Attributes
- LANGUAGE ATTRIBUTES - dir, lang
HTML 4 Element List
<!--<comment>--><!DOCTYPE><a><abbr><acronym><address><applet><area><b><base><basefont><bdo><big><blockquote><body><br><button><caption><center><cite><code><col><colgroup><dd><del><dfn><dir><div><dl><dt><em><fieldset><font><form><frame><frameset><head><h1> to <h6><hr> <html><i><iframe><img><input><ins><isindex><kbd><label><legend><li><link><map><menu><meta><noframes><noscript><object><ol><optgroup><option><p><param><pre><q><s><samp><script><select><small><span><strike><strong><style><sub><sup><table><tbody><td><textarea><tfoot><th><thead><title><tr><tt><u><ul><var>
