-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
33 lines (32 loc) · 1.18 KB
/
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
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Index</title>
<link rel="stylesheet" href="CSS/style_scheme.css" type="text/css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="CSS/stylesheet.css" type="text/css" />
</head>
<body id="BodyWrap">
<header>
<nav id="HeaderWrap" class="BottomBorder">
<h1>Menu</h1>
<ul>
<li><a href="./Index.html">Index</a></li>
<li><a href="./WeatherStations.html">Weather Stations</a></li>
<li><a href="./NWSQuery1.html">NWS Query</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 6 - AJAX</p>
</div>
<footer id="FooterWrap" class="BottomBorder">
<address>
©Tanner Cunningham<br />
</address>
</footer>
</body>
</html>