-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplasticd.html
81 lines (75 loc) · 3.44 KB
/
plasticd.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Save The Seas</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<link href="assets/css/donate.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-168909203-2">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-168909203-2');
</script>
</head>
<body>
<nav class="navbar">
<ul class="nav-links">
<input type="checkbox" id="checkbox_toggle" />
<label for="checkbox_toggle" class="hamburger">☰</label>
<div class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="blog.html">Blog</a></li>
</div>
</ul>
<div class="donate">
<li id="donate-button"><a href="donate.html">Donate</a></li>
</div>
</nav>
<h1>DONATE: PLASTIC</h1>
<p class="pink-text">Please consider donating to one of the charities listed below!</p>
<br><br>
<div class="cards">
<div class="card">
<h2 class="card-title">The Ocean Cleanup</h2>
<img src="assets/img/toc.png" alt="">
<p class="card-desc">"With your support we can rid the oceans of plastic" </p>
<div class="go">
<h2><a href="https://theoceancleanup.com/donate/">Donate</a></h2>
</div>
</div>
<div class="card">
<h2 class="card-title">Oceana</h2>
<img src="assets/img/oceana.png" alt="">
<p class="card-desc">"Protect Our Oceans with a Monthly or One-Time Gift Today
With the support of more than 1 million activists like you, we have already protected nearly 4 million square miles of ocean and innumerable sea turtles, sharks, dolphins, and other sea creatures – but there is still more to be done.
Support our work to protect the oceans by giving today. With your help, we can protect marine life and habitats."</p>
<br>
<div class="go">
<h2><a href="https://act.oceana.org/page/95375/donate/1?ea.tracking.id=homepage&utm_campaign=general&utm_source=header&utm_medium=website&transaction.donationAmt=&op=DONATE">Donate</a></h2>
</div>
</div>
<div class="card">
<h2 class="card-title">Clean Planet Project</h2>
<img src="assets/img/cpp.png" alt="">
<p class="card-desc">"Together, we’re on our way to a much cleaner, safer, and healthier planet - one piece of trash at a time!"</p>
<br>
<div class="go">
<h2><a href="https://www.cleanplanetproject.org/donate">Donate</a></h2>
</div>
</div>
</div>
<script src="assets/js/donate.js"></script>
</body>
</html>