HTML with internal CSS and jQuery Template

Blank HTML Template

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

Download ZIP

Zip contains 1 file (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>
<script>
$(document).ready(function () {
// your jquery code goes here, this ensures it works after the document loads.
});
</script>
<style>
body {
background-color: #ffffff;
}
</style>
</head>
<body></body>
</html>