Tutorials

WHERE DID THE DESIGN GO?

This website is not broken, the owner of it has decided to participate in Naked CSS Day 2026!

Naked CSS Day is a event that is held once per year (April 9th) to celebrate good & well planned design. The website will be back to its normal state tomorrow.

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>