-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtv.html
31 lines (26 loc) · 1010 Bytes
/
rtv.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
<!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>
<!-- makes a title and button -->
<h2 id="rtvTitle">Ready to vote? The first step is to register!</h2>
<input id="rtvButton" type="button" onclick="window.location.href='https://www.usa.gov/register-to-vote';" value="Register to Vote" />
<!-- puts that image at the bottom -->
<p class="rtvImg"></p>
</body>
</html>