-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
108 lines (95 loc) · 4.59 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/6405bb6e15.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/index.js"></script>
<link rel="stylesheet" href="css/about.css">
<title>Helping Hands</title>
</head>
<body>
<!--Navbar-->
<div class="wrapper">
<header>
<div>
<nav class="navbar navbar-inverse navbar-fixed-top navbar-expand-lg" >
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar" style="background-color:#fff ;"></span>
<span class="icon-bar" style="background-color:#fff ;"></span>
<span class="icon-bar" style="background-color:#fff ;"></span>
</button>
<div class="logo">
<i class="fas fa-hand-holding-heart"></i>
HELPING HANDS
</div>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar navbar-nav navbar-right">
<li ><a href="index.html" style="color: #fff;" >Home</a></li>
<li ><a href="about.html" style="color: #fff;" >About</a></li>
<li ><a href="contact.html" style="color: #fff;">Contact</a></li>
</ul>
</div>
</nav>
</div>
<h1 id="about_text">
ABOUT US
</h1>
</header>
</div>
<h1 id="text">
Get to know us!
</h1>
<h1 id="text2">
We are a NGO that aims to provide universal access to food and other facilities to the needy people.
</h1>
<!--Some cards containing demo information-->
<div class = "container" style="margin: 0 auto;">
<div class="row">
<div class="col-md-3 col-md-pull-1 col-xs-7">
<div class="card card1" style="height:110%; width:150%;">
<div style=" text-align:center">
<img class="card-img-top" src="images/about.jpg" alt="Card image" style=" width:38%; height:36%;">
</div>
<div class="card-body" >
<p class="card-text">Our mission is to provide sustainable health and education services to
children and adults throughout the world without personal, religious, or political prejudice.
</p>
</div>
</div>
</div>
<div class="col-md-3 col-md-push-1 col-xs-7 col-xs-push-1">
<div class="card card2" style="height:110%; width:150%;">
<div style=" text-align:center">
<img class="card-img-top" src="images/about.jpg" alt="Card image" style=" width:38%; height:36%;" >
</div>
<div class="card-body" >
<p class="card-text"> One of Helping Hands primary functions is to provide
volunteer opportunities for medical professionals, medical students, and non-medical volunteers to do their best.
</p>
</div>
</div>
</div>
<div class="col-md-3 col-md-push-3 col-xs-7 col-xs-push-1 ">
<div class="card" style="height:110%; width:150%;">
<div style=" text-align:center">
<img class="card-img-top" src="images/about.jpg" alt="Card image" style=" width:38%; height:36%;">
</div>
<div class="card-body" >
<p class="card-text">Building schools and hospitals, providing health care through mobile medical
and dental clinics...for over 25 years we have helped the people all over the globe.
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>