HTML with external CSS and jQuery Template

Blank HTML Template

A blank HTML template with external CSS and jQuery files. Includes library from Google and Document Ready code that ensures it only executes once the page is ready.

Download ZIP

Zip contains 3 files (see below)

<!DOCTYPE html>
<html lang=”en”>
<head>
<metacharset=”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”
/>
<!– Calling jQuery from Google –>
<scriptsrc=”https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js”></script>
<!– Link to your JS file –>
<scriptsrc=”scripts/script.js”></script>
<!– Link to your CSS file –>
<linkrel=”stylesheet”href=”css/style.css”/>
</head>
<body></body>
</html>

body {
background-color:#ffffff;
}

$(document).ready(function () {
// your jquery code goes here, this ensures it works after the document loads.
});

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.