-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.php
118 lines (86 loc) · 4.3 KB
/
donate.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>home page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css\style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.php">
<img src="images\img3.png" width="140" height="100" class="d-inline-block align-top" alt="">
</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="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="about_us.php"> About Us <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active" >
<a class="nav-link" href="do_your_bit.php"> Do Your Bit <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact_us.php">Contact Us <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="our_volunteers.php">Our Volunteers <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="donate.php">DONATE <span class="sr-only">(current)</span></a>
</li>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
SignUp/Login
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="register.php">SignUp</a>
<a class="dropdown-item" href="login.php">Login</a>
</div>
</div>
</ul>
</div>
</nav>
<section class="my-3">
<div class="py-3">
<h2 class="text-center"><div class="text-dark">
SUPPORT DO-NATION FOOD BANK WITH A DONATION</h2>
</div>
</section>
<section class="my-4">
<div class="py-4">
<h4 class="text-center"><div class="text-dark">
YOU CAN SELECT ANY OPTION TO DONATE </h4><br>
<h5 class="text-center" >-Scan this to donate through GPay</h5><br>
<img src="images/i37.jpg" class="mx-auto d-block" height="250" width="280"><br>
<h5 class="text-center" >-Scan this to donate through PhonePay</h5><br>
<img src="images/i38.jpg" class="mx-auto d-block" height="250" width="320"><br>
<h5 class="text-center" >-You can also donate using one of the following UPI ID's</h5><br>
<p class="text-center">1.do-nation@okrbi</p><br>
<p class="text-center">2.9153824309@ybl</p><br>
<p class="text-center">3.9153824309@axl</p><br>
<p class="text-center">4.9153824309@ibl</p><br>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<footer class="p-3 bg-dark text-white text-center">
<div >
<p >
<div>@do-nation</div><br>
<div>All donations are tax exempted as eligible under section 80G of the Income Tax Act, 1961.</div></p><br>
<div>DO_NATION Food Bank is registered u/s 80 G of the Income Tax Act 1961 vide registration number Pan AADTR4438G.
</div></p><br>
<div>The above contribution is approved by the Commissioner of Income Tax (exceptions) u/s 80 G of the Income Tax Act 1961 vide approval letter no. CIT (E) /80G/3103-B/2018-19 dated February 20, 2019.
</div></p><br>
<div>Registered Office: D-703, Sainath Towers, Neelam Nagar, Phase -2, Mulund East, Mumbai 400081.
</div></p><br>
</div>
</footer>
</body>
</html>