-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharities.html
88 lines (81 loc) · 4.67 KB
/
charities.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
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>good charities</title>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/custom.css">
<link rel="icon" type="image/png" href="/assets/flag.png">
<script defer src="/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<header class="py-3 bg-black">
<div class="container d-flex flex-wrap justify-content-center">
<a href="/" class="d-flex align-items-center mb-3 mb-lg-0 me-lg-auto link-body-emphasis text-decoration-none">
<img src="/assets/flag.png" height="35px" class="pe-3">
<span class="fs-4 text-white">Kummin König Ludwig Gorgonzola ☭</span>
</a>
<form class="col-12 col-lg-auto mb-3 mb-lg-0" role="search">
<input type="search" class="form-control" placeholder="Search..." aria-label="Search">
</form>
</div>
</header>
<nav class="py-2 border-bottom bg-ketchup topnav">
<div class="container d-flex flex-wrap">
<ul class="nav me-auto">
<li class="nav-item dropdown">
<a href="#" class="nav-link link-body-emphasis px-2 text-white dropdown-toggle-split"
data-bs-toggle="dropdown" aria-expanded="false">Departments</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="/departments/politburo">Cabinet</a></li>
<li><a class="dropdown-item" href="/departments/business-and-economics/">Business and Economics</a></li>
<li><a class="dropdown-item" href="/departments/history-and-media">History and Media</a></li>
<li><a class="dropdown-item" href="/departments/education">Education</a></li>
<li><a class="dropdown-item" href="/departments/environment">Environment</a></li>
<li><a class="dropdown-item" href="/departments/health">Health</a></li>
<li><a class="dropdown-item" href="/departments/language-and-culture/">Language and Culture</a></li>
<li><a class="dropdown-item" href="/departments/national-defence-and-military">National Defence and Military</a></li>
<li><a class="dropdown-item" href="/departments/technical-innovation-and-digital-culture">Technological Innovation and Digital Culture</a></li>
<li><a class="dropdown-item" href="/departments/transport">Transport</a></li>
<li><a class="dropdown-item" href="/departments/work">Work</a></li>
</ul>
</li>
<li class="nav-item">
<a href="/laws/" class="nav-link link-body-emphasis px-2 text-white">Laws</a>
</li>
<li class="nav-item">
<a href="/news/" class="nav-link link-body-emphasis px-2 text-white">News</a>
</li>
<li class="nav-item">
<a href="/about/" class="nav-link link-body-emphasis px-2 text-white">About</a>
</li>
</ul>
<ul class="nav">
<li class="nav-item"><a href="/login/" class="nav-link link-body-emphasis px-2 text-white">Login</a></li>
<li class="nav-item"><a href="/create-account/" class="nav-link link-body-emphasis px-2 text-white">Sign up</a></li>
</ul>
</div>
</nav>
<main class="container">
<h1>Charities that help support values of equity and solidarity</h1>
<p>foreign nationals may want to support aid to people in need</p>
<br>
<h2><a href="https://www.icrc.org/en/donate">red cross</a></h2>
<p>The red cross is dedicated to assisting civilians in conflicts, for example ukranians and palestinians under fire from invasive states</p>
<br>
<h2><a href="https://www.oxfam.org/en/donate-oxfam-affiliate">Oxfam</a></h2>
<p>Oxfam is a charity dedicated to not only helping civilians in areas like Gaza, but also battling poverty, famine and drought across the world</p>
<br>
<h2><a href="https://www.savethechildren.org.uk/donate-today?cid=par-globalscidonatepagelink_-go_001-8D39015MM&utm_campaign=go_001&utm_medium=partner&utm_source=globalscidonatepagelink">Save the children</a></h2>
<p>Save the children is mostly focussed on civilian protections, specifically children. They also work towards preventing violence against children and providing education to children</p>
<br>
<h2><a href="https://outrightinternational.org/take-action/">Outright international</a></h2>
<p>Outright international is dedicated to assisting LGBTQIA+ groups in areas where they are discrimiated against, either by the nation or by discriminatory groups.</p>
<br>
<h2><a href="https://equalitynow.org/?form=donate">Equality now</a></h2>
<p>This charity is dedicated to assisting gender and sex equality in many nations.</p>
<br>
</main>
</body>
</html>