-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (74 loc) · 3.63 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html class="no-js" lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>NYC 2016 Elections Homepage</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<link rel="stylesheet" href="css/normalized-reset.css">-->
<link rel="stylesheet" href="css/style.css">
<script src="js/vendor/modernizr2.8.3.min.js"></script>
</head>
<body class="index">
<div class="container">
<div class="logo">
<img src="images/election-project-logo.png" alt="Election Project logo" title="Get Out The Vote 2016">
</div>
<div class="main-navigation">
<div class="menu">
<a href="#" id="menu_button" class="menu-button">Menu</a>
</div>
<nav id="main_nav" title="Navigation" class="main-nav-bar">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="electionday.html">Vote</a></li>
<li><a href="candidates.html">Candidates</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</nav>
</div>
<header class="page-header cf">
<h1>GET OUT THE VOTE</h1>
<h2>2016 Elections</h2>
</header>
<a id="top"></a>
<div class="main-content">
<article>
<div class="general-election-information">
<h1>Dates</h1>
<h2><strong>General Election</strong>: <em>November 8, 2016</em></h2>
<div class="deadline-content">
<h4>Registration Deadline</h4><p>Friday, <em>October 14, 2016</em></p>
</div>
<p><strong>Third Presidential Debate</strong>: Wednesday, <em>October 19, 2016</em></p>
<ul>
<li>It will be on all of the major networks (ABC, NBC, Fox, CBS, MSNBC, Fox News, Fox Business, CNN, Univision, Telemundo, and C-SPAN)</li>
<li>Online livestreamed on Twitter <a href="http://debates.twitter.com">http://debates.twitter.com</a></li>
<li>Facebook and YouTube and on radio WNYC 93.9 FM or <a href="http://www.wnyc.org/">http://www.wnyc.org/</a></li>
</ul>
</div>
<div class="links">
<button><a href="register.html">How to Register</a></button>
<button><a href="electionday.html">Voting Information</a></button>
<button><a href="candidates.html">Information about Candidates</a></button>
<button><a href="events.html">Upcoming Events</a></button>
<button><a href="resources.html">Election Resources</a></button>
</div>
</article></div>
<button><a href="#top">Top</a></button>
<footer>
<p class="copyright">© Get Out The Vote NYC 2016</p>
</footer>
</div>
<!--end .container-->
<!-- Load CDN version of jQuery. For other versions visit this page: https://code.jquery.com/jquery/ -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<!-- Load Local version if CDN is not working-->
<script>
window.jQuery || document.write('<script src="js/vendor/jquery-3.1.1.min.js"><\/script>')
</script>
<script id="script" src="js/nav-javascript.js"></script>
</body>
</html>