Created
May 11, 2018 10:33
-
-
Save megane9988/6b8d94c64b69c037b572dd782663fc7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<!-- サイト全体のヘッダー --> | |
<header> | |
<!-- サイトのロゴ --> | |
<h1> | |
<img src="" alt=""> | |
</h1> | |
<!-- サイトのメインナビゲーション --> | |
<nav> | |
<ul> | |
<li> | |
<a href="#">リンク</a> | |
</li> | |
<li> | |
<a href="#">リンク</a> | |
</li> | |
</ul> | |
</nav> | |
</header> | |
<!-- ここから本体だよ本体 --> | |
<main> | |
</main> | |
<!-- サイト全体のフッター --> | |
<footer> | |
<!-- フッターによくありそうなメニュー --> | |
<nav> | |
<ul> | |
<li><a href="#">aaa</a></li> | |
<li></li> | |
</ul> | |
</nav> | |
<!-- コピーライト(不要かもだけど大抵ほしいと言われる。) --> | |
<div>コピーライトの文言</div> | |
</footer> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment