HTML Doctype Example

Example showing the HTML5 doctype declaration.

Preview

Code

<!DOCTYPE html>
<html>
<head>
  <title>HTML5 Page</title>
</head>
<body>

  <h1>HTML5 Document</h1>
  <p>Every HTML page should start with a DOCTYPE declaration.</p>

</body>
</html>

More HTML Basic Examples (6)