Skip to content

Instantly share code, notes, and snippets.

@robinselmer
Last active April 13, 2016 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinselmer/be1477927d11c8819a8b to your computer and use it in GitHub Desktop.
Save robinselmer/be1477927d11c8819a8b to your computer and use it in GitHub Desktop.
Basic HTML5 skeleton as a base for any web project.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Robin Selmer">
<title>Basic HTML5 Skeleton</title>
<link href="style.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment