Basic HTML-5 Template
This is the basic HTML-5 template needed to start a webpage from scratch.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="This is the basic HTML-5 template needed to start a webpage from scratch. The meta description tag describes what the page is about. Should be over 50 characters and less than around 160 characters. Search engines sometimes this is used to provide a preview snippet.">
<meta name="keywords" content="basic, html, template">
<title>Title of Your Page</title>
<!-- CSS file to load -->
<link rel="stylesheet" href="">
<!-- CSS styles -->
<style>
/* CSS styles */
</style>
</head>
<body>
<h1>Title of Your Page</h1>
<p>The title of your page should match the title tag in the head.</p>
<!-- javascript file to load -->
<script src="name-of-script-file.js"></script>
<!-- javascript code -->
<script>
// javascript code here
</script>
</body>
</html>