Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Donation website #184

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions Donation website/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Doation website :

## About the project :

- This website has been made as part of Donating for disaster.
- There is a RazorPay button for donating the money.
- The payment process is not real, it is under test mode.
- We can make the payment through UPI, Net banking, Debit card etc.
- We need to give name, email, address for payment.
- After a payment has been made we get a confirmation email.


## Technologies used :

- HTML
- CSS
- Javascript
- RazorPay payment button


## Screenshots :
![image](https://user-images.githubusercontent.com/84305637/193877033-0e0c4aef-bb25-4476-b9d1-394d96b98df1.png)

![image](https://user-images.githubusercontent.com/84305637/192280018-c3d2c83f-cc55-406b-be6b-52b901f4db17.png)

![image](https://user-images.githubusercontent.com/84305637/192280906-a1e1f44d-e63a-4dbb-9540-61dfb574a80b.png)

![image](https://user-images.githubusercontent.com/84305637/192280576-54dfd0e1-b07e-4c6a-b4b8-4957f7129899.png)

22 changes: 22 additions & 0 deletions Donation website/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Donation for disaster and flood</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="count">
<nav><h2>Donation web page</h2></nav>
<div class="text">
<br><br><br><br><br><br><br><br>
<h1>Join hand for disaster donation </h1>
<h2>Donate here for disaster and flood mangement </h2>
<form><script src="https://checkout.razorpay.com/v1/payment-button.js" data-payment_button_id="pl_IuhO61pYI34ute" async> </script> </form>
<h2>An initiative by caring people </h2>
</div>
<footer>
<h3>&copy;All Rights are Reserved</h3>
</footer>
</div>
</body>
</html>
64 changes: 64 additions & 0 deletions Donation website/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@import url('https://fonts.googleapis.com/css2?family=Lemonada:wght@700&display=swap');
body {
margin: 0;
padding: 0;
height: 100vh;
color: white;
background-color: rgb(203, 247, 182);

height: 100%; /* You must set a specified height */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover;
}
#count {
height: 100%;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.text {
justify-content: left;
margin: 50px;
font-size: 30px;
color: rgb(197, 15, 15);
width: 80%;
margin-left: -20px;
}
nav {
width: 100%;
background: rgba(243, 5, 184, 0.5);
position: fixed;
top: 0;
height: 70px;

}
nav > h2 {
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: rgb(241, 235, 235);
margin-left: 15px;
padding-bottom: 10px;
font-size: 25px;
text-align: center;
}
form > h1 {
color: #f10bde;
}
form {
text-align: center;
}
footer {
height: 47px;
width: 100%;
background: rgba(243, 5, 184, 0.5);
position: fixed;
bottom: 0;
text-align: center;

}
footer > h3 {
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
color: #f1f1f1;
margin: 0px;
}