Skip to content

Instantly share code, notes, and snippets.

@maco1028
Last active September 9, 2017 16:53
Show Gist options
  • Save maco1028/6f80b30c5b6226cf6756ed840d29fcdc to your computer and use it in GitHub Desktop.
Save maco1028/6f80b30c5b6226cf6756ed840d29fcdc to your computer and use it in GitHub Desktop.
Html基本
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>サンプルページ</title>
</head>
<body>
<!-- header -->
<header>
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="SNAPPERS"></a>
</div>
<nav>
<ul class="global-nav">
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- header -->
<!-- wrap -->
<div id="wrap">
<div class="content">
</div>
</div>
<!-- wrap -->
<!-- footer -->
<footer>
<small>(C)2017 ◯◯◯.</small>
</footer>
<!-- footer -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment