-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (83 loc) · 4.17 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
<!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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="stylesheet" href="./CSS/style.css">
<title>The Sparks Donation</title>
</head>
<body>
<header>
<div class="nevbar" id="nevbar">
<div class="logo">
<a href="index.html" id="logo"><h1><span>SPARKS</span> DONATION</h1></a>
</div>
<div class="menu" id="menu">
<ul>
<li><a id="home" href="index.html">Home</a></li>
<li><a id="about" href="#aboutOrg">About Us</a></li>
<li><a href="#contact-us">Contact</a></li>
<li><a id="donate" href="https://rzp.io/l/dtcm3D48k" target="_blank">Donate</a></li>
</ul>
</div>
<div class="menuicon">
<i id="menuicon" onclick="togglemenu()" class="fas fa-chevron-circle-down"> <span>MENU</span></i>
</div>
</div>
<div class="cover">
<div class="information">
<h3>Raising Hope</h3>
<h2>To help brighten someone's</h2>
<h1> <span>FUTURE</span> </h1>
<a href="https://rzp.io/l/dtcm3D48k" target="blank"><button>DONATE</button></a>
</div>
</div>
</header>
<main>
<div class="about" id="aboutOrg">
<center>
<div class="container">
<div class="about-detail">
<h1>About Us</h1>
<p>We raise funds online for medical emergencies and social causes.</p>
<p>Crowdfunding can be a quick and easy way to meet unanticipated, pressing needs. Today, anyone with a smartphone can participate in making a difference with great ease. More and more people are now raising funds online to tackle emergencies more efficiently.</p>
</div>
</div>
</center>
</div>
<div class="form-container" id="contact-us">
<div class="container-el">
<h1 class="heading-el" h1>Contact Us</h1>
<form action="#">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="message">Message Us</label>
<textarea id="message" name="subject" placeholder="Write something.."></textarea>
<center>
<button class="btn s-btn">Submit</button>
</center>
</form>
</div>
</div>
</main>
<footer>
©The Sparks Foundation Donate | Developed by <a href="https://www.linkedin.com/in/kushagra487/" target="_blank"><strong>Kushagra</strong></a>
</footer>
<script>
var menu = document.getElementById("menu");
menu.style.maxHeight = "0px";
function togglemenu() {
if (menu.style.maxHeight == "0px") {
menu.style.maxHeight = "390px";
}
else {
menu.style.maxHeight = "0px";
}
}
</script>
</body>
</html>