HTML5 Template (jQuery)

PHOTO EMBED

Fri Apr 15 2022 01:51:17 GMT+0000 (Coordinated Universal Time)

Saved by @twelvetone

<!DOCTYPE html>
<html lang="en">
<head>
<title>PageTitle</title>
<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="author" content="author">
<meta name="description" content="Brief description">

<link href="style.css" rel="stylesheet">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="canonical" href="https://domain.com/path/to/page/" />

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>

<header></header>

<div>Your content here</div>

<footer></footer>

<script src="scriptfile.js"></script>
<script>
jQuery(document).ready(function($) {
    console.log( "ready!" );
});
</script>
</body>
</html>
content_copyCOPY

HTML template with jQuery included