forked from kirsten/scripted-school-site-redesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 717 Bytes
/
index.html
File metadata and controls
26 lines (23 loc) · 717 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
<!doctype html>
<html>
<head>
<title>My Awesome High School | Home</title>
<link href="style.css" type="text/css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="nav">
<ul>
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="">Activities</a></li>
<li class="nav-item"><a href="">Teachers</a></li>
<li class="nav-item"><a href="">Students</a></li>
</ul>
</div>
<h1>Welcome to My High School!</h1>
<div id="footer">
My High School is Awesome | Classon Ave, Brooklyn NY
</div>
</body>
</html>