-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
48 lines (46 loc) · 1.37 KB
/
faq.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>FAQ</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- link the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- link the webpage's JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<!-- navbar -->
<header>
<div class = "navbar">
<ol>
<li id = "dropItem"><a href="index.html" id = "current"><p>HOME</p></a></li>
<li id = "dropItem"><p>ABOUT</p>
<div id = "dropdown">
<a href = "mission.html">OUR MISSION</a>
<a href = "about.html">ABOUT ME</a>
<a href = "faq.html">FAQ</a>
</div>
</li>
<li id = "dropItem"><p>PHOTO ALBUM</p>
<div id = "dropdown">
<a href = "photos.html">PHOTO ALBUM</a>
<a href = "personalized.html">DRAW YOUR OWN</a>
</div>
</li>
<p id = "mainHead">Walkable Cities</p>
</ol>
</div>
</header>
<!-- end of navbar -->
<div class="center">
<div>
<h1>FAQ</h1>
</div>
<div>
<p>Nothing to see here...yet</p>
</div>
</div>
</body>
</html>