-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlm.html
42 lines (37 loc) · 2.03 KB
/
lm.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
<!DOCTYPE html>
<html>
<head>
<title>Voters In The Know</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" />
<div class="topnav">
<a href="index.html">Home</a>
<a href="ta.html">Take Action</a>
<a href="rtv.html">Register to Vote</a>
<a href="lm.html">Learn More</a>
<a href="pledge.html">Take the Pledge</a>
<p class = "navDescript">Let's make every vote an informed one!</p>
</div>
</head>
<body>
<div class="learnMore">
<!-- title for this section -->
<h2 id="wantLM">Want to learn more? Check out both of these websites to continue your path on informed voting!</h2>
<!-- first link -->
<div class="linky1">
<h3 id="link1Title">ADP Guide to Informed Voting</h3><br>
<p id="link1">The ADP "The Democracy Commitment" put out this great resource to explain how to be an informed voter. They talk about how to watch for misleading ads as well as rhetoric used in debates. At only 5 pages long, this is a quick read to help you get informed for the next election!</p><br>
<input id = "button2" type="button" onclick="window.location.href='https://www.aascu.org/programs/ADP/VotingResources/InformedVoting.pdf';" value="I want to be informed!" />
</div>
<!-- second link -->
<div class="linky2">
<h3 id="link2Title">Ballot Ready</h3><br>
<p id="link2">Ballot Ready is a great resource that includes bios on different cadidates each reviewed by nonpartisan reviewers to make sure that the bios are fair. They also help you learn how to register to vote where you live. This can be a very helpful resource for those just getting started with the idea of informed voting!</p><br>
<input id="button1"type="button" onclick="window.location.href='https://www.ballotready.org/';" value="Show me how to register!" />
</div>
</div>
</body>
</html>