№ 4
May 1, 2016

 

A basic HTML template

Brooks Swinnerton

This is a basic HTML template that I reach for when creating a new webpage. There are many like it, but this is mine.

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <meta name="description" content="">
  <meta name="author" content="">

  <title></title>

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

  <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  <![endif]-->
</head>

<body>


  <script src="js/scripts.js"></script>
</body>
</html>

Courtesy of this post.