Tutorials

Create a Valid HTML5 Document

Step 1: Create a Valid HTML5 Document

Correct HTML5 Page Structure

To create a valid HTML5 page start off with this basic document template:

<!doctype html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title></title>
  </head>
  <body>

  </body> 
</html>