Blank HTML document

This is the blank HTML doc I use for creating simple pages, usually for testing. Just copy to a text document and save it with .html as the extension.

<!doctype html>

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

  <title>Page Title</title>
  <meta name="description" content="Page Description">
 
  <script src="js/scripts.js"></script>
 
  <link rel="stylesheet" href="css/styles.css">

</head>

<body>

</body>
</html>