-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (93 loc) · 4.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HK Foundation</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<header>
<div class="navbar">
<h2><span>HK</span> Foundation</h2>
<nav>
<ul>
<li><a href="#home">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="#contact">CONTACT US</a></li>
<li><a href="">DONATE NOW</a></li>
</ul>
</nav>
</div>
</header>
<section id="home">
<p class="text1">To help such Childern we are here to help them, but if you want to help us click on Donate</p>
<form id="donate">
<script src="https://checkout.razorpay.com/v1/payment-button.js" data-payment_button_id="pl_HURgjwsxkKMxrZ" async>
</script></form>
</section>
<section id="about">
<h2 align="center">WHAT WE D<span>O TO SAV</span>E CHILDREN</h2>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card">
<img src="img\medical.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Emergency Medical Support</h5>
<p class="card-text">Committed to saving lives of ill children across the nation and laying foundation for good health. 1631 Children till date.</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="img\education.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Education</h5>
<p class="card-text">Child Help Foundation Champions the cause of Quality Education which is free and accessible for all the Children. 464216 Children Impacted till date</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="img\zero-hunger.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Zero Hunger</h5>
<p class="card-text">Ensuring no Child dies of Starvation and Fighting Malnutrition. 62815 Tribal Children Impacted till date</p>
</div>
</div>
</div>
</div>
</section>
<section id="contact">
<h2 align="center">Contact Us</h2>
<form class="row g-3">
<div class="col-12">
<label for="inputName" class="form-label">Name</label>
<input type="text" class="form-control" id="inputName" placeholder="name">
</div>
<div class="col-12">
<label for="inputNumber" class="form-label">Mobile Number</label>
<input type="text" class="form-control" id="inputNumber" placeholder="99999 99999">
</div>
<div class="col-12">
<label for="inputEmail4" class="form-label">Email</label>
<input type="email" class="form-control" id="inputEmail4" placeholder="abc12@gmail.com">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Massage</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Enter your massage here"></textarea>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary">Send Now</button>
</div>
</form>
</section>
<footer id="sticky-footer" class="flex-shrink-0 py-4 bg-dark text-white-50">
<div class="container text-center">
<small>Copyright © HK Foundation</small>
</div>
</footer>
</body>
</html>