Minimum Html5 Template

13/02/2019 13:27 • ☕️ 1 min read

This is just a snippet useful for quick copying:

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Title</title>
  </head>
  <body>
    <p>Hello World!</p>
  </body>
</html>

This one is with script and link can have deffer attribute in script:

<!doctype html>

<html>
<head>
  <meta charset="utf-8">

  <title>The Minimum HTML5</ title>
  <meta name="description" content="The Minimum HTML5">
  <meta name="author" content="SitePoint">

  <link rel="stylesheet" href="css/styles.css?v=1.0">
</head>

<body>
  <script src="js/scripts.js"> </script>
</body>
</html>
Published: 13 Feb 2019

Any sufficiently advanced technology is indistinguishable from magic.
Aleksandar Ristevski on Twitter