(HTML區)
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>HTML5 Document</title>
<meta charset="utf-8" />
<meta name="description" content="This is an HTML5 example" />
<meta name="keywords" content="HTML5,CSS3,javascript" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="ch01.css" />
</head>
<body id="wrapper">
<header id="main__header">
<img src="image/navbg.jpg">
<h1>這是網站主標題放置之處</h1>
</header>
<nav id="main_menu">
<ul>
<li id="main_menu_li">首頁</li>
<li id="main_menu_li"><a href="http://tw.youtube.com" target="_blank">視訊</a></li>
<li id="main_menu_li">音樂</li>
<li id="main_menu_li">聯絡我們</li>
</ul>
</nav>
<section id="main_section">
<article>
<header>
<hgroup>
<h2>This is the subtitle of article number one</h2>
<figure>
<img src="http://minkbooks.com/content/myimage.jpg" />
<figcaption>
This is the description of the image
</figcaption>
</figure>
</hgroup>
</header>
這是第一篇文章
<footer><p>comments (0)</p></footer>
</article>
<article>
<header>
<hgroup><h1>This is the second post</h1>
<h2>This is the subtitle of article number two</h2></hgroup>
</header>
這是第二篇文章
<footer><p>comments (0)</p></footer>
</article>
</section>
<aside id="main_aside">
<blockquote>Article one</blockquote>
<blockquote>Article two</blockquote>
<blockquote><a href="http://tw.yahoo.com" target="_blank">Yahoo!</a></blockquote>
</aside>
<footer id="main_footer">
著作權所有 © 2011-2014
</footer>
</body>
</html>