-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
32 lines (31 loc) · 949 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
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Index</title>
<link rel="stylesheet" href="CSS/style.css" type="text/css" />
</head>
<body>
<header>
<nav id="HeaderWrap" class="BottomBorder">
<h1>Menu</h1>
<ul>
<li><a href="./Index.html">Index</a></li>
<li><a href="./Afford.html">Afford</a></li>
<li><a href="./CompoundInterest.html">Compund Interest</a></li>
<li><a href="./Payment.html">Payment</a></li>
</ul>
</nav>
</header>
<div id="BodyWrap" class="BottomBorder" style="font-size:xx-large; text-shadow:initial">
<p>Welcome</p>
<p>IS 360 Assignment 4 - JavaScript</p>
</div>
<footer id="FooterWrap" class="BottomBorder">
<address>
©Tanner Cunningham<br />
</address>
</footer>
</body>
</html>