-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (91 loc) · 4.87 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Assets/styles.css">
<link href='https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title>Donation</title>
</head>
<body>
<header class="l-header">
<nav class="nav bd-grid">
<div>
<a href="#" class="nav__logo">SheeRee Foundations</a>
</div>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item"><a href="#home" class="nav__link active">Home</a></li>
<li class="nav__item"><a href="#about" class="nav__link">About</a></li>
<li class="nav__item"><a href="#skills" class="nav__link">Donate</a></li>
<li class="nav__item"><a href="#contact" class="nav__link">Contact</a></li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</div>
</nav>
</header>
<main class="l-main">
<section class="home bd-grid" id="home">
<div class="home__data">
<h1 class="home__title">Hi,<br>Let's <span class="home__title-color">SAVE A LIFE</span><br>No amount is small</h1>
<a href="#skills" class="button">Donate Here</a>
</div>
<div class="home__social">
<a href="https://www.facebook.com/shree.mishra.7731247" class="home__social-icon"><i
class='bx bxl-facebook'></i></a>
<a href="https://twitter.com/mishrashree18" class="home__social-icon"><i class='bx bxl-twitter'></i></a>
</div>
<!-- <div class="home__img">
<img src="Assets/larm-rmah-AEaTUnvneik-unsplash.jpg" alt="">
</div> -->
</section>
<section class="about section " id="about">
<h2 class="section-title">About</h2>
<div class="about__container bd-grid">
<div class="about__img">
<img src="Assets/pexels-photo-6348123.jpeg" alt="about">
</div>
<div>
<h2 class="about__subtitle">SheeRee Foundations</h2>
<p class="about__text">On our platform, you can donate to a nonprofit with confidence. Our robust due diligence process covers legal, compliance, financial and impact checks for each donation made to any non-profit, including in-person visits to beneficiaries and actual feedback reports. We do all this so that our donors can trust that their giving is indeed doing what it's supposed to do - change lives. </p>
</div>
</div>
</section>
<section class="skills section" id="skills">
<h2 class="section-title">Donate here!</h2>
<div class="skills__container bd-grid">
<div>
<h2 class="skills__subtitle">Make your contribution</h2>
<p class="skills__text">No amount is small </p>
<form><script src="https://checkout.razorpay.com/v1/payment-button.js" data-payment_button_id="pl_HJHxtzTEhQHlP6" async> </script> </form>
</div>
<div>
<img src="Assets/pexels-rodnae-productions-6647176.jpg" alt="" class="skills__img">
</div>
</div>
<section class="contact section" id="contact">
<h2 class="section-title">Contact</h2>
<div class="contact__container bd-grid">
<form action="" class="contact__form">
<input type="text" placeholder="Name" class="contact__input">
<input type="mail" placeholder="Email" class="contact__input">
<textarea name="" id="" cols="0" rows="10" class="contact__input"></textarea>
<input type="button" value="Send" class="contact__button button">
</form>
</div>
</section>
</main>
<footer class="footer">
<p class="footer__title">Donate and Save lives</p>
<div class="footer__social">
<a href="https://www.facebook.com/shree.mishra.7731247" class="footer__icon"><i class='bx bxl-facebook'></i></a>
<a href="https://instagram.com/thelaserbeamgirl?igshid=1fhbh8755s1da" class="footer__icon"><i class='bx bxl-instagram'></i></a>
<a href="https://twitter.com/mishrashree18" class="footer__icon"><i class='bx bxl-twitter'></i></a>
</div>
</footer>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="Assets/main.js"></script>
</body>
</html>