html doctype

HTML
<!-- HTML 5 DOCTYPE -->
<!DOCTYPE html>
<!doctype html>
<html lang="fr">
<head>
  <meta charset="utf-8">
  <title>Titre de la page</title>
  <link rel="stylesheet" href="style.css">
  <script src="script.js"></script>
</head>
<body>
  ...
  <!-- Le reste du contenu -->
  ...
</body>
</html><!DOCKTYPE html> <!-- Start of html code -->
<html>
  <head>
    <title>TITLE<title>
    <script>
      //JavaScript
    </script>
    <style>
      /* CSS */
    </style>
  </head>
  <body>
    <p>Hello!</p>
  </body>
<html><!DOCTYPE html>
<!--Use the html tag too, under the declaration. -->
Source

Also in HTML: