A blank HTML template with an external CSS file and an external JS file
Zip contains 3 files (see below)
<!doctype html>
<html lang=”en”>
<head>
<meta charset=”utf-8″>
<title>Insert Your Page Title Here</title>
<meta name=”description” content=”This is the description that search engines will display. Aim for 145-155 characters.”>
<meta name=”author” content=”Insert the content author or owner name here”>
<!– Link to your JS file –>
<script src=”scripts/script.js”></script>
<!– Link to your CSS file –>
<link rel=”stylesheet” href=”css/style.css”>
</head>
<body>
</body>
</html>
body {
background-color:#ffffff;
}
// This is an empty javascript file. Delete this line and insert your JS!
WHY HTML
Using HTML is fun, but it can be time consuming. Creating everything from scratch takes a long time, and it also isn’t the funnest thing to do. This is why we’ve created a collection of easy, downloadable HTML templates for you to use and easily start coding.