-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhomepage.html
90 lines (89 loc) · 4.36 KB
/
homepage.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
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@700&family=Nanum+Gothic:wght@700&family=Quicksand:wght@300;500;600;700&family=Raleway:wght@200;300&family=Roboto+Slab:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="homepage.css">
</head>
<body>
<div class="header_buttons">
<a href="#" class="home">Home</a>
<a href="#" class="about">About</a>
<a href="#" class="">Register</a>
<a href="#" class="contact">Contact Us</a>
<a href="signup.html" class="sign"> Sign In / Sign Up</a>
</div>
<div class="image-container">
<img src="final homepage photo.png" alt="">
</div>
<div class="welcome">
Welcome To <c>One Planet</c> 🌍
</div>
<div class="intro">
Access to quality education and gender equality remains a challenge in underprivileged </br> communities, hindered by limited educational resources and opportunities. Additionally, volunteerism </br>and community engagement for SDG-related projects lack effective coordination and awareness.</br>
</br>Our proposed solution to this is a website that addresses these challenges. This</br> website will empower underprivileged communities by providing easy access to educational resources,</br> courses, and support. Additionally, it will connect individuals interested in volunteering with SDG-related</br> projects and initiatives in their local communities, facilitating volunteer recruitment and engagement.
</div>
<div class="slider-container">
</div>
<div class="section">
<img src="people-volunteers-illustration_95397-60.avif" alt="">
<h2>BECOME A VOLUNTEER</h2>
<p></p>
<a href="volunteer.html" target="_blank" rel="noopener noreferrer" class="register">Register</a>
</div>
<div class="section">
<img src="online-learning-concept-female-teacher-with-books-chalkboard-video-lesson_113065-550.avif" alt="">
<h2>BECOME AN EDUCATOR</h2>
<p></p>
<a href="educator.html" target="_blank" rel="noopener noreferrer" class="register">Register</a>
</div>
<div class="section">
<img src="happy-young-employees-giving-support-help-each-other_179970-625.avif" alt="">
<h2>EDUCATIONAL SUPPORT</h2>
<p></p>
<a href="support.html" target="_blank" rel="noopener noreferrer" class="register">Register</a>
</div>
<div class="section">
<img src="man-multitasking-work_23-2148390869.avif" alt="">
<h2>RESOURCE SHARING HUB</h2>
<p></p>
<a href="resources.html" target="_blank" rel="noopener noreferrer" class="register">Register</a>
</div>
<div class="printabout">
ABOUT US
</div>
<div class="aboutus">
<div class="person">
<img src="Avatar.jpeg" alt="Person 1">
<p>Sampanna Shalya</p>
<p>23BCB0141</p></br>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam gravida ex quis neque bibendum, ut gravida tortor tincidunt.</p>
</div>
<div class="person">
<img src="Boy free icons designed by Creartive.jpeg" alt="Person 2">
<p>Keshav Agarwal</p>
<p>23BCB0049</p></br>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam gravida ex quis neque bibendum, ut gravida tortor tincidunt.</p>
</div>
</div>
<div class="contactus">
<h1>Contact Us</h1>
<form class="contact-form" action="#" method="post">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>