Last active
September 9, 2017 16:53
-
-
Save maco1028/6f80b30c5b6226cf6756ed840d29fcdc to your computer and use it in GitHub Desktop.
Html基本
This file contains hidden or 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> | |
<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