-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
29 lines (29 loc) · 882 Bytes
/
Index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>External Stylesheet Lab</title>
<link rel="stylesheet" href="css/global.css" type="text/css" />
<link rel="stylesheet" href="css/colors.css" type="text/css" />
</head>
<body>
<header>
<nav id="HeaderWrap" class="BottomBorder">
<h1>Menu</h1>
<ul>
<li><a href="https://google.com">Google</a></li>
<li><a href="https://google.com">Sample Page</a></li>
<li><a href="https://google.com">Sample</a></li>
</ul>
</nav>
</header>
<div id="BodyWrap" class="BottomBorder">
<p>Sample Content</p>
</div>
<footer id="FooterWrap" class="BottomBorder">
<address>
©Tanner Cunningham<br />
</address>
</footer>
</body>
</html>