-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.61 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.61 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Project Civics - Democracy Declassified -</title>
<link href="http://fonts.googleapis.com/css?family=Merriweather’" rel="stylesheet" type="text/css"></link>
<link rel ="icon" href ="https://projectcivics.files.wordpress.com/2017/06/cropped-pclogo_21.png"></link>
<link rel ="StyleSheet" href ="ProjectCivics.css"></link>
</head>
<body>
<image src ="https://projectcivics.files.wordpress.com/2017/06/cropped-pclogo_21.png" alt ="Logo" align ="center"></image>
<h1>Project Civics</h1>
<h4>-Democracy Declassified-</h4>
<div class="topnav" id="topnav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a><li>
<li><a href="GovMap.html">GovMap</a></li>
<li><a href="NewsBlog.html">News Blog</a><li>
<li><a href="5StepVoter.html">5stepvoter</a></li>
<li><a href="Glossary.html">Glossary</a></li>
</ul>
<a href="#javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<script>
function navBar() {
var x = document.getElementById('topnav');
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<img src ="https://projectcivics.files.wordpress.com/2017/06/graphicstock-portrait-of-a-cheerful-young-woman-holding-usa-flag-and-looking-at-camera-isolated-on-a-white-background_ho_kxc2l3e-e1497050962180.jpg?w=1180&h=435&crop=1" alt ="Flaggirl"></img>
</body>
</html>