-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexself.html
53 lines (46 loc) · 1.08 KB
/
indexself.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Michael's Pre-work Page</title>
</head>
<body>
<header role="banner">
<h1 id="logo">Logo</h1>
<nav id="navigation" role="navigation">
<h2>Navigation</h2>
<ul role="menubar" >
<!--links go here-->
</ul>
</nav>
</header>
<main role="main">
<aside id="sidebar">
<h2>Sidebar</h2>
<nav id="tree" role="navigation">
<h3>Tree Navigation</h3>
<ul role="tree">
<!--tree navigation-->
</ul>
</nav>
</aside>
<article id="main-article" role="article">
<h2>Main Article</h2>
</article>
<article id="side-article" role="article">
<h3>Article Aside</h3>
</article>
</main>
<footer>
<section id="copyright">
<h2>Copyright</h2>
</section>
<nav id="sitemap" role="navigation">
<h2>Site Map</h2>
</nav>
<section id="empty">
<h2>Empty Block</h2>
</section>
</footer>
</body>
</html>