<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./tailwind.css">
</head>
<body>
<!-- ======================== ヘッダ ======================== -->
<header>
<nav>ナビゲーション</nav>
</header>
<!-- ======================== / ヘッダ ======================== -->
<!-- ======================== container ======================== -->
<main>
<div class="container">
<article>
<h1>見出し1</h1>
<section>
<h2>見出し2</h2>
</section>
</article>
</div>
</main>
<!-- ======================== /container ======================== -->
<!-- ======================== フッター ======================== -->
<footer class="footer">
</footer>
<!-- ======================== / フッター ======================== -->
</body>
</html>