-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinformation.html
85 lines (64 loc) · 3.37 KB
/
information.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
<!DOCTYPE html>
<html>
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Information Page</title>
<!-- CSS -->
<link rel="stylesheet" href="css/information.css">
<!-- JS -->
<!-- JS for Tab -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="js/information.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<!-- Side Navigation Bar Content -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Home</a>
<a href="candidates.html">Candidates</a>
<a href="information.html">Why Vote?</a>
<a href="registration.html">Registration</a>
</div>
<!-- Content -->
<div id="supercontainer">
<span style="font-size:30px;cursor:pointer" onclick="openNav()"><span id="whiteHamburger">☰</span></span>
<div class="headerContainer">
<div id="headerText">
<a href="index.html"><img src="css/voterTurnout.png"></a>
</div>
</div>
<div class="mainContainer">
<h2> Federal Issues </h2>
<div class="button-containers">
<a href="https://en.wikipedia.org/wiki/Health_care" class="btn-primary" role="button">Health Care</a>
<a href="https://en.wikipedia.org/wiki/Economy" class="btn-primary" role="button">The Economy</a>
<a href="https://en.wikipedia.org/wiki/Immigration" class="btn btn-primary" role="button">Immigration</a>
<a href="https://en.wikipedia.org/wiki/Gun_control" class="btn-primary" role="button">Gun Policy</a>
<a href="https://en.wikipedia.org/wiki/Women%27s_rights" class="btn-primary" role="button">Women's Rights</a>
<a href="https://en.wikipedia.org/wiki/Tax" class="btn-primary" role="button">Taxes</a>
<a href="https://en.wikipedia.org/wiki/Foreign_Affairs" class="btn-primary" role="button">Foreign Affairs</a>
<a href="https://en.wikipedia.org/wiki/Income_inequality_in_the_United_States" class="btn-primary" role="button">Income Inequality</a>
<a href="https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States" class="btn-primary" role="button">Supreme Court</a>
<a href="https://en.wikipedia.org/wiki/Commercial_policy" class="btn-primary" role="button">U.S. Trade Policy</a>
<a href="https://en.wikipedia.org/wiki/Climate" class="btn-primary" role="button">Climate</a>
<a href="https://en.wikipedia.org/wiki/Special_Counsel_investigation_(2017%E2%80%93present)" class="btn-primary" role="button">Mueller Investigation</a>
<a href="https://en.wikipedia.org/wiki/Wikipedia:Partisanship" class="btn-primary" role="button">Partisanship</a>
</div>
<div id="federal" >
<div id="chart_div_federal" class="chart_div"></div>
</div>
<hr>
<h2> Illinois State Issues </h2>
<div id="state">
<div id="chart_div_state" class="chart_div"></div>
</div>
</div>
</div>
</body>
</html>