-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
135 lines (129 loc) · 5.93 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ReliefConnect</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- font awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- fonts -->
<link rel = "stylesheet" href = "font/fonts.css">
<!-- normalize css -->
<link rel = "stylesheet" href = "css/normalize.css">
<!-- custom css -->
<link rel = "stylesheet" href = "css/utility.css">
<link rel = "stylesheet" href = "css/style.css">
<link rel = "stylesheet" href = "css/responsive.css">
</head>
<body>
<!-- navbar -->
<nav class = "navbar">
<div class = "container flex">
<a href = "index.html" class = "site-brand">
Relief<span>Connect</span>
</a>
<button type = "button" id = "navbar-show-btn" class = "flex">
<i class = "fas fa-bars"></i>
</button>
<div id = "navbar-collapse">
<button type = "button" id = "navbar-close-btn" class = "flex">
<i class = "fas fa-times"></i>
</button>
<ul class = "navbar-nav">
<li class = "nav-item">
<a href = "index.html" class = "nav-link">Home</a>
</li>
<li class = "nav-item">
<a href = "disaster.html" class = "nav-link">Current Disasters</a>
</li>
<li class = "nav-item">
<a href = "donate.html" class = "nav-link">Donate</a>
</li>
<li class = "nav-item">
<a href = "volunteer.html" class = "nav-link">Volunteer</a>
</li>
<li class = "nav-item">
<a href = "become.html" class = "nav-link">Become a Member</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- end of navbar -->
<!-- header -->
<header class = "flex">
<div class = "container">
<div class = "header-title">
<h1>ReliefConnect</h1>
<p>Unifying Aid, Empowering Communities: Disaster Relief Connect</p>
</div>
<div class = "header-form">
<a href="ask.html"><button class="btn-1">Sign Up</button></a>
<a href="give.html"><button class="btn-2">Login</button></a>
</div>
</div>
</header>
<!-- content -->
<div style="margin-top: 100px; margin-bottom: 100px; margin-right: 200px; margin-left: 200px"><center>
<h1>ABOUT US</h1>
<p>Welcome to Disaster Relief Connect, your centralized platform for NGO collaboration during disasters. We facilitate resource sharing, coordination, and support among NGOs, ensuring a more effective response to crises. Our website provides information on donating, volunteering, and connecting with NGOs, as well as links to public institutions offering assistance. Join us in making a difference when it matters most.</p>
</center></div>
<!-- footer -->
<footer class = "py-4" style="padding-bottom: 0px;">
<div class = "container footer-row">
<div class = "footer-item footer-left">
<a href = "index.html" class = "site-brand">
Relief<span>Connect</span>
</a>
<p class = "text">Unifying Aid, Empowering Communities: Disaster Relief Connect</p>
</div>
<div class = "footer-item footer-right">
<h2>Follow us on: </h2>
<ul class = "social-links">
<li>
<a href = "#"> <!--TODO add link-->
<i class = "fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href = "#"><!--TODO add link-->
<i class = "fab fa-instagram"></i>
</a>
</li>
<li>
<a href = "#"><!--TODO add link-->
<i class = "fab fa-twitter"></i>
</a>
</li>
<li>
<a href = "#"><!--TODO add link-->
<i class = "fab fa-pinterest"></i>
</a>
</li>
<li>
<a href = "#"><!--TODO add link-->
<i class = "fab fa-google-plus"></i>
</a>
</li>
</ul>
</div>
</div>
</footer>
<!-- end of footer -->
<!-- js -->
<script src = "js/script.js"></script>
<script>
// play/pause video
let video = document.querySelector('.video-wrapper video');
document.getElementById('play-btn').addEventListener('click', () => {
if(video.paused){
video.play();
} else {
video.pause();
}
});
</script>
</body>
</html>