-
Notifications
You must be signed in to change notification settings - Fork 0
/
take-action.html
84 lines (70 loc) · 2.93 KB
/
take-action.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
<!DOCTYPE html>
<html>
<head>
<title>Take Action</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- import fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Koulen&family=Work+Sans&display=swap" rel="stylesheet">
<!-- link the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- link the webpage's JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<div id="menu">
<center>
<nav>
<ul>
<li><a href="index.html" class="navLink">Home</a></li>
<li><a href="take-action.html" class="navLink">Take Action</a></li>
</ul>
</nav>
</center>
</div>
<header>
<!-- Background image from New York Times: https://www.nytimes.com/2022/06/11/us/gun-violence-protests.html -->
<center><h1>Take action.</h1></center>
</header>
<main>
<div class="content">
<div>
<h3>What can YOU do?</h3>
<ul>
<li><a href="https://www.house.gov/representatives" target="_blank">Call/email your representatives to advocate for gun control legislation</a></li>
<li>Spread awareness about this topic by talking with your family/friends</li>
<li>Donate to organizations working towards safer communities, such as Everytown for Gun Safety</li>
<li>If you own a gun, consider disposing of it by participating in a gun buyback</li>
<li>Participate in marches and protests</li>
</ul>
</div>
<img src="assets/computer.jpg" alt="an open computer with a person's hands in frame ready to type" style="width:500px;height:auto;">
</div>
<div style="background-color:#031F3A;padding:15px;">
<h3 class="subtitle" style="margin-bottom:10px; color:#FEED72;">Organizations</h3>
<div id="orgs">
<center>
<a href="https://www.everytown.org/" target="_blank">Everytown for Gun Safety</a>
<br>
<a href="https://www.bradyunited.org/" target="_blank">Brady United</a>
<br>
<a href="https://marchforourlives.com/" target="_blank">March for Our Lives</a>
<br>
<a href="https://momsdemandaction.org/" target="_blank">Moms Demand Action</a>
<br>
<a href="https://giffords.org/" target="_blank">Giffords</a></li>
<br>
<a href="https://gunresponsibility.org/" target="_blank">Alliance for Gun Responsibility</a>
</center>
</div>
<br>
<br>
<br>
<br>
</div>
</main>
</body>
</html>