-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (63 loc) · 2.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Midterm Countdown</title>
<link rel='stylesheet' type='text/css' href='reset.css'>
<link rel='stylesheet' type='text/css' href='style.css'>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link rel='stylesheet' type='text/css' href='flipclock.css'>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<div class='left_side'>
<div class="header">
<h1>Countdown to<br> Midterm<br> Elections</h1>
</div>
<div class="clock_box">
<div class="clock"></div>
</div>
<div class="election-info-links">
<div id="senate-link">
<a class="election-info-btn senate_btn" href="#" target="_blank">
<i class="fa fa-star" aria-hidden="true"><!-- Font-Awesome --></i>
<span class="text">Senate<p class='senate_txt'></p></span>
<i class="fa fa-star" aria-hidden="true"><!-- Font-Awesome --></i>
</a>
</div>
<div id="house-link">
<a class="election-info-btn house_btn" href="#" target="_blank">
<i class="fa fa-star" aria-hidden="true"><!-- Font-Awesome --></i>
<span class="text">House<p class='house_txt'></p></span>
<i class="fa fa-star" aria-hidden="true"><!-- Font-Awesome --></i>
</a>
</div>
</div>
</div>
<div class='right_side'>
<h1>Meet Your Representatives</h1>
<ul class='rep_list'></ul>
</div>
<footer>
<div class='inner_foot'>
<p>built with love by <a href='https://github.com/thebkbuffalo' target='_blank'>Buffalo Berg</a>, <a href='https://github.com/joemsak' target='_blank'>Joe Sak</a>, and <a href='http://irokdesigns.com/' target='_blank'>Kori Mirsberger</a></p>
</div>
</footer>
<!-- <div class='right_side'>
<h1>rogue potus twitter</h1>
</div> -->
<script type='text/javascript' src='config.js'></script>
<script src="https://widget.battleforthenet.com/widget.js" async></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="flipclock.js"></script>
<script src="main.js"></script>
</body>
</html>