Threesuns

Email

Contact

All Semesters

Semesters

All Courses

Courses

Scripting (Blended)

CSYS2033

3 credits

Create a Valid HTML5 Document

How To

Correct HTML5 Page Structure

Step 1

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>