-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfishingd.html
78 lines (74 loc) · 3.66 KB
/
fishingd.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
<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: FISHING</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">Seaspiracy</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/3/34/Seaspiracy_2021_Film_poster.png" alt="">
<p class="card-desc">"Supporting us with a monthly or one-off donation is an incredible way to help us continue fighting for our oceans. We are continuing to investigative and create educational content to share across social media, and raise worldwide awareness to help save our oceans and bring it to the forefront of environmental and political action. We must come together to create this change, and we can't do it alone. By supporting us with a donation you can be assured that every penny goes back into spreading this vital message, ensuring we turn the tide and save our oceans before it's too late."</p>
<br>
<div class="go">
<h2><a href="https://www.seaspiracy.org/donate-now">Donate</a></h2>
</div>
</div>
<div class="card">
<h2 class="card-title">OPS</h2>
<img src="assets/img/ops.png" alt="">
<p class="card-desc">"Unsustainable fishing methods threaten the stability of marine ecosystems."</p>
<br>
<div class="go">
<h2><a href="https://www.opsociety.org/donate/">Donate</a></h2>
</div>
</div>
<div class="card">
<h2 class="card-title">BLUE</h2>
<img src="https://www.bluemarinefoundation.com/wp-content/uploads/2020/01/BMF-Facebook.jpg" alt="">
<p class="card-desc">"Blue Marine Foundation (BLUE) is a charity dedicated to restoring the ocean to health by addressing overfishing, one of the world’s biggest environmental problems."</p>
<br>
<div class="go">
<h2><a href="https://www.bluemarinefoundation.com/support-us/">Donate</a></h2>
</div>
</div>
</div>
<script src="assets/js/donate.js"></script>
</body>
</html>