-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
62 lines (61 loc) · 3.68 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donate to Gaza</title>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="img/icon.png">
<link rel="stylesheet" href="about.css">
<link rel="stylesheet" href="footer.css">
</head>
<body>
<main class="main-container">
<nav class="nav">
<div class="nav-logo">
<a href="home.html" class="logo"><img src="img/palestine_chronicle_new_logo.png" alt="" width="150px"></a>
</div>
<div class="nav-menu" id="navMenu">
<ul>
<li><a href="home.html" class="link">Home</a></li>
<li><a href="#" class="link">Blog</a></li>
<li><a href="services.html" class="link">Services</a></li>
<li><a href="#" class="link active">About</a></li>
</ul>
</div>
<div class="nav-button">
<button type="button" class="btn white-btn" onclick="logout()">log out</button>
</div>
<div class="nav-menu-btn">
<i class="bx bx-menu" onclick="myMenuFunction()"></i>
</div>
</nav>
<section id="about-section">
<div class="container-about">
<h2>Supporting Gaza: A Call for Help</h2>
<div class="vid-cont"><iframe width="693" height="390" src="https://www.youtube.com/embed/9ww5jz-l-rg" title="Over 150 Days - Palestine Emergency - Islamic Relief USA" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
<p>In the heart of Gaza, where life should flourish, the reality is starkly different. The people of Gaza, resilient and hopeful, face unimaginable challenges every day. Lives are lost, families torn apart, and futures shattered by violence and conflict.</p>
<p>As the world watches, Gaza pleads for assistance. Amidst the devastation, hope emerges in the form of donations. Your support can provide vital aid to those in desperate need.</p>
<p>The atrocities committed in Gaza compel us to act. Your donation, regardless of size, can make a profound impact. It can provide shelter to the homeless, food to the hungry, and medical care to the injured.</p>
<p>This website serves as a beacon of hope. Here, you can donate securely, knowing that your contribution will directly benefit the people of Gaza. Rest assured, every penny will be used to rebuild lives and restore dignity.</p>
<p>Your donation is a lifeline for Gaza. It symbolizes solidarity, compassion, and humanity in the face of adversity.</p>
<p>Join us in our mission to support Gaza. Together, we can make a difference.</p>
<p>To donate now and make a difference, click <a href="services.html">here</a>.</p>
</div>
</section>
</main>
<footer class="donation-footer">
<div class="container">
<div class="donation-info">
<h2>Support Gaza Relief</h2>
<p>Your contribution can make a difference. Donate now to help the people of Gaza.</p>
</div>
<div class="donate-button">
<a href="services.html" class="btn-donate">Donate Now</a>
</div>
</div>
</footer>
<script src="services.js"></script>
</body>
</html>