週記「我が道を行く(徒歩)」

週に一度撮った写真を載せる日記ではないページ

html5 ノート01

<!doctype html><!-- html5用-->
<html>
<head>
<meta charset="utf-8"><!--文字の設定-->
<title>4月28日</title><!--タイトル-->
<link rel="styleseet"href="../style.css"><!--外部ファイル参照-->
<meta name="viewport" content="width=devicr-width"><!--画面幅と合わせる-->
<link rel="icon" href="icon.png"><!--アイコン画像設定-->
<meta name="apple-mobile-web-appcapable""contents=""yes"> <!--iphone専用-->
</head>
<body><!-- コンテンツ-->

<header>
<h1>見出し<h1>
</header>
<nav><!-- ナビゲージョン-->
<li><a href="">top</a></li>
<li><a href=""> 01</a></li>
<li><a href=""> 02</a></li>
<li><a href="">03</a></li>
<li><a href=""> 04</a></li>
</nav>

<main>
<section><!--まとまり -->
<h1>001A</h1>
<p>001B</p>
</section>

<section>
<h1>002A</h1>
<p>002B</p>
</section>

<article><!--記事 検索エンジンのため-->
記事001
<time><!--時間 これも検索エンジンのため-->
2015,03,28
</time>

</article>


</main>

<footer>
<small>コピーライトとか書くところ</smalil><!--html5からsmallは注釈になった-->
</footer>

</body>
</html>

 

schoo.jp