-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
214 lines (213 loc) · 7.32 KB
/
aboutus.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS -->
<link rel="stylesheet" href="aboutus.css" />
<!-- Favicon -->
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
<!-- Boostrap CDN -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<!-- fontAwesome CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<title>About us</title>
</head>
<body>
<!-- navabar -->
<nav class="navbar">
<div class="container">
<div class="navbar-logo">
<a class="navbar-brand" href="index.html">
<img
src="img/giveaid logo.png"
alt="GiveAid Logo"
width="150"
height="140"
/>
</a>
</div>
<ul class="nav justify-content-end">
<li class="nav-item">
<a
class="nav-link nav-items"
aria-current="page"
href="index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact us</a>
</li>
</ul>
</div>
</nav>
<!-- about section start-->
<h1 class="title title-text">How it works?</h1>
<div class="row row-cols-1 row-cols-md-2 g-4">
<div class="col">
<h1 class="steps-count">Step 1:</h1>
<div class="card">
<img
src="img/cause.png"
class=""
alt="cause-img"
width="300px"
height="300px"
/>
<div class="card-body">
<h5 class="card-title">Choose a Cause</h5>
<p class="card-text">
Browse different campaigns and select a cause.
</p>
</div>
</div>
</div>
<div class="col">
<h1 class="steps-count">Step 2:</h1>
<div class="card">
<img
src="img/select-products.png"
class=""
alt="select-products-img"
width="300px"
height="300px"
/>
<div class="card-body">
<h5 class="card-title">Select Products</h5>
<p class="card-text">
Select products and quantity you wish to donate.
</p>
</div>
</div>
</div>
<div class="col">
<h1 class="steps-count">Step 3:</h1>
<div class="card">
<img
src="img/order-processing.png"
class=""
alt="order-processing-img"
width="300px"
height="300px"
/>
<div class="card-body">
<h5 class="card-title">Order Processing</h5>
<p class="card-text">
Checkout and pay for your contributions.
</p>
</div>
</div>
</div>
<div class="col">
<h1 class="steps-count">Step 4:</h1>
<div class="card">
<img
src="img/delivery-report.png"
class=""
alt="delivery-report-img"
width="300px"
height="300px"
/>
<div class="card-body">
<h5 class="card-title">Delivery Report</h5>
<p class="card-text">
GiveAid delivers the products and the organisation updates
about product utilization.
</p>
</div>
</div>
</div>
</div>
<!-- footer -->
<div class="footer">
<div class="footer-left">
<a
href="/"
class="d-flex align-items-center mb-3 link-dark text-decoration-none"
>
<img
class="footer-logo"
src="img/giveaid logo.png"
alt="logo-footer"
/>
</a>
<p class="footer-para" style="margin-bottom: 0">
We are India's most trusted and transparent crowdfunding platform,
with a vision to create a social impact. Our unique model allows
people from across the globe to donate towards raising funds for
products required by NGOs and charities in India, which are then
delivered to them by us
</p>
<div class="footer-icon">
<a href="https://github.com/harrish-coder" target="_blank"
><i class="fa-brands fa-github github"></i
></a>
<a
href="https://www.linkedin.com/in/harrish-m-a2a3ba214/"
target="_blank"
><i class="fa-brands fa-linkedin linkedin"></i
></a>
<a href="https://www.instagram.com/h4ri_ig/" target="_blank"
><i class="fa-brands fa-instagram instagram"></i
></a>
<a href="https://twitter.com/" target="_blank"
><i class="fa-brands fa-twitter twitter"></i
></a>
</div>
</div>
<div class="footer-right">
<h1 class="footer-title">Discover</h1>
<div class="footer-nav">
<ol>
<ul style="list-style-type: none">
<a class="footer-contact" href="index.html"
><li class="footer-about-us">Home</li></a
>
<a class="footer-about" href="#"
><li class="footer-about-us">About us</li></a
>
<a class="footer-contact" href="contactus.html"
><li class="footer-contact-us">Contact us</li></a
>
</ul>
</ol>
</div>
</div>
<div class="back-to-top">
<a href="#">Back to top</a>
</div>
</div>
<div class="footer-copyright">
<p class="footer-copyright-text">
© Copyright 2023, Crafted with ❤️ by
<a href="https://www.linkedin.com/in/harrish-m-a2a3ba214/"
>harrish
</a>
</p>
</div>
</body>
</html>
</head>
</html>