-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #324 from niharikastha/main
#115 Payment gateway using HTML, CSS, JAVAscript
- Loading branch information
Showing
10 changed files
with
877 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
|
||
<head> | ||
|
||
<title>CONTACT</title> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link href="style2.css" rel="stylesheet" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<section id="title"> | ||
|
||
<nav > | ||
|
||
<a href="#" ><img src="aastha-foundation.jpg" alt="logo rock" id = "logo"/> </a> | ||
<span class="menu-space"></span> | ||
|
||
<ul class="menu"> | ||
|
||
<a href="index.html">Home</a> | ||
<a href="#about">About</a> | ||
<a href="#">Contact</a> | ||
<a href="donate.html"><button id="donate">DONATE</button></a> | ||
|
||
</ul> | ||
|
||
</nav> | ||
|
||
</section> | ||
|
||
<section id="main"> | ||
|
||
<div id="contact"> | ||
<p class="heading">GET IN TOUCH</p> | ||
|
||
<form id="details"> | ||
|
||
<label for="Name">Name :</label> | ||
<input type="text" palceholder="Enter Full Name" id="name" required/><br /><br /> | ||
|
||
<label for="Phone">Mob. No :</label> | ||
<input type="number" placeholder="Mobile Number" id="number" required/><br /><br /> | ||
|
||
<label for="Email">Email :</label> | ||
<input type="email" placeholder="Your email" id="email" required/> <br /><br /> | ||
|
||
<label for="Message">Message :</label> | ||
<input type="text" placeholder="Enter your message" id="message"required/><br/><br /><br /> | ||
|
||
<div id="buttonid"> | ||
<button type="submit" id="submit">Submit</button> | ||
</div> | ||
|
||
</form> | ||
|
||
</div> | ||
|
||
</section> | ||
|
||
|
||
<footer id="footer"> | ||
|
||
<ul class="social"> | ||
|
||
<a href="#"><i class="fa fa-2x fa-facebook"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-twitter"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-linkedin"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-instagram"></i></a> | ||
|
||
</ul> | ||
|
||
<ul class="contact"> | ||
|
||
<li><a href="#">Blog</a></li> | ||
<li><a href="#">AASTHA FOUNDATION Policy</a></li> | ||
<li><a href="#">Get Involved</a></li> | ||
<li><a href="#">Contact Us</a></li> | ||
|
||
</ul> | ||
|
||
<div class="last"> | ||
|
||
<p><a href="#">2021 AASTHA - Child Rights reserved</a></p> | ||
<p><a>|</a></p> | ||
<p><a href="#">Privacy Policy</a></p> | ||
<p><a>|</a></p> | ||
<p><a href="#">terms & Conditions</a></p> | ||
|
||
</div> | ||
|
||
|
||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
|
||
<head> | ||
|
||
<title>DONATE</title> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link href="style3.css" rel="stylesheet" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> | ||
</head> | ||
|
||
|
||
<body> | ||
|
||
<section id="title"> | ||
|
||
<nav > | ||
|
||
<a href="#" ><img src="aastha-foundation.jpg" alt="logo rock" id = "logo"/> </a> | ||
|
||
<span class="menu-space"></span> | ||
|
||
<ul class="menu"> | ||
|
||
<a href="index.html">Home</a> | ||
<a href="#about">About</a> | ||
<a href="contact.html">Contact</a> | ||
<button id="donate">DONATE</button> | ||
|
||
</ul> | ||
|
||
</nav> | ||
|
||
</section> | ||
|
||
|
||
<div class="donate__image"> | ||
<img class="happy" src="happy.jpg" alt="image" width= "1000" height="300"/> | ||
<div class="donate__text">Donate For a Cause</div> | ||
<div class="donate__btn"> | ||
<form> | ||
<script src="https://checkout.razorpay.com/v1/payment-button.js" data-payment_button_id="pl_HMVohzSWRWHjHv" async> | ||
</script> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<footer id="footer"> | ||
<ul class="social"> | ||
<a href="#"><i class="fa fa-2x fa-facebook"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-twitter"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-linkedin"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-instagram"></i></a> | ||
|
||
</ul> | ||
<ul class="contact"> | ||
<li><a href="#">Blog</a></li> | ||
<li><a href="#">AASTHA FOUNDATION Policy</a></li> | ||
<li><a href="#">Get Involved</a></li> | ||
<li><a href="#">Contact Us</a></li> | ||
</ul> | ||
|
||
<div class="last"> | ||
<p><a href="#">2021 AASTHA - Child Rights reserved</a></p> | ||
<p><a>|</a></p> | ||
<p><a href="#">Privacy Policy</a></p> | ||
<p><a>|</a></p> | ||
<p><a href="#">terms & Conditions</a></p> | ||
</div> | ||
|
||
|
||
</footer> | ||
</body> | ||
</html> | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<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" /> | ||
<link href="style1.css" rel="Stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> | ||
<title>The sparks Foundation</title> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<section id="title"> | ||
<nav > | ||
<a href="#" ><img src="aastha-foundation.jpg" alt="logo rock" id = "logo"/> </a> | ||
<span class="menu-space"></span> | ||
|
||
<ul class="menu"> | ||
|
||
<a href="#">Home</a> | ||
<a href="#about">About</a> | ||
<a href="contact.html">Contact</a> | ||
<a href="donate.html"><button id="donate">DONATE</button></a> | ||
</ul> | ||
|
||
</nav> | ||
</section> | ||
|
||
|
||
<div > | ||
<img src="child.png" id = "main"/> | ||
</div> | ||
|
||
|
||
<div id="about" style="color:white;"> | ||
<br /> | ||
<p id="why">Why Donate?</p> | ||
<p>India has an estimated 46 million children between 6-18 years of age who are not in school. Some have never had the chance and many have had to drop out- either to work as child labourers or beacause they're being forced to get married</p> | ||
<br /> | ||
<p><b>YOU can help us change this!</b></p> | ||
<br /> | ||
<p>Donate to <b>AASTHA</b> , India's most trusted NGO, to make a difference. Your contribution will ensure that such children get a proper education and pave their way to a brighter future.</p> | ||
<p>Help India's children find their true potential. Donate now!</p> | ||
<br /> | ||
<p><i>Source : RGI Cenceus Population Projection 2016 and Unified DISE 2016-17</i> </p> | ||
</div> | ||
|
||
<footer id="footer"> | ||
<ul class="social"> | ||
<a href="#"><i class="fa fa-2x fa-facebook"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-twitter"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-linkedin"></i></a> | ||
<a href="#"><i class="fa fa-2x fa-instagram"></i></a> | ||
|
||
</ul> | ||
<ul class="contact"> | ||
<li><a href="#">Blog</a></li> | ||
<li><a href="#">AASTHA FOUNDATION Policy</a></li> | ||
<li><a href="#">Get Involved</a></li> | ||
<li><a href="#">Contact Us</a></li> | ||
</ul> | ||
|
||
<div class="last"> | ||
<p><a href="#">2021 AASTHA - Child Rights reserved</a></p> | ||
<p><a>|</a></p> | ||
<p><a href="#">Privacy Policy</a></p> | ||
<p><a>|</a></p> | ||
<p><a href="#">terms & Conditions</a></p> | ||
</div> | ||
|
||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.