HTML <html> tag
Usage
Tells the browser that the file is an HTML document.
Example
Code:
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
Page content in here
</body>
</html>
Required Attributes
- xmlns - to define the xmlns namespace, value must be "http://www.w3.org/1999/xhtml"
Optional Attributes
- none