HTMLテンプレート

<!doctype html>
<html class="no-js" lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>タイトル</title>
<meta name="description" content="説明文説明文説明文説明文説明文">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<link rel="manifest" href="site.webmanifest">
<link rel="icon" href="favicon.ico">
<link rel="apple-touch-icon" href="icon.png">

<link rel="stylesheet" href="style.css">

</head>
<body>
<div class="wrap">
    <header>
        <p>headerコンテンツ</p>
    </header>
    <main>
        <p>mainコンテンツ</p>
    </main>
    <footer>
        <p>footerコンテンツ</p>
    </footer>
</div><!--/.wrap-->

<!--jquery-->
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
</body>
</html>