-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
82 lines (75 loc) · 3.84 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="img/favicon.png" type="image/png">
<title>About Us</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<style>
body{
background-image:url("img/about.jpg");
background-repeat: no-repeat;
background-size: cover;
background-color: skyblue;
}
</style>
</head>
<body>
<header class="header_area">
<div class="main_menu">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand logo_h" href="index.html" style="color:red;font-size:20px;font-weight:bold;">DONATE</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse offset" id="navbarSupportedContent">
<ul class="nav navbar-nav menu_nav ml-auto">
<li class="nav-item"><a class="nav-link" href="index.html" style="color:white;" onMouseOver="this.style.color='orange'"onMouseOut="this.style.color='white'">Home</a></li>
<li class="nav-item active"><a class="nav-link" style="color:orange;" onMouseOver="this.style.color='orange'">About</a></li>
<li class="nav-item"><a class="nav-link" href="contacthere.html" style="color:white;" onMouseOver="this.style.color='orange'"onMouseOut="this.style.color='white'">Contact</a></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</header>
<section class="about_area section_gap">
<div class="container">
<div class="row">
<div class="single_about row">
<div class="col-lg-6 col-md-12 text-center about_left">
<div class="about_thumb">
<img src="img/child.jpg" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-6 col-md-12 about_right">
<div class="about_content">
<h2>
STAR FOUNDATION <br>
#OxygenForIndia
</h2>
<p>
Help us arrange oxygen supplies for hospitals and patients in need.
</p>
<p>
The outbreak of Coronavirus disease has impacted millions of lives in the country. During this pandemic, we have come across many COVID-19 positive patients who need Oxygen supply to save their lives.
</p>
<a class="primary_btn" href="learn.html">Learn more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="js/themes.js"></script>
<script src="js/theme.js"></script>
</body>
</html>