HTML Document - HTML CSS HTML

HTML CSS examples for HTML:Document

Outer Structure

There are two elements that provide the outer structure of an HTML document

DOCTYPE
html element

The Outer Structure of an HTML Document

<!DOCTYPE HTML>
<html>
          <!-- elements go here -->
</html>

The DOCTYPE element marks the document as an HTML document.

This is expressed through the HTML boolean attribute:

<!DOCTYPE HTML>

Related Tutorials