-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
33 lines (29 loc) · 837 Bytes
/
layout.html
File metadata and controls
33 lines (29 loc) · 837 Bytes
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
<html>
<head>
<title>Notes Page | Layout</title>
</head>
<body background="assets/bg.png">
<header>
<h1 style="color: white">My HTML Notes Page</h1>
</header>
<nav>
<div>
<a href="index.html">Home</a> |
<a href="lists.html">Lists</a> |
<a href="images.html">Images</a> |
<a href="tables.html">Tables</a> |
<a href="color.html">Color</a> |
<a href="odds.html">Odds</a> |
<a href="layout.html">Layout</a>
</div>
</nav>
<main>
<section>
</section>
<aside>
</aside>
</main>
<footer>
</footer>
</body>
</html>