-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (119 loc) · 4.79 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
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pathways School Noida Student Council</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<header>
<nav>
<span class="menu-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</span>
<ul class="menu">
<li><a href="#about">About</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#housepoints">House Points</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<h1>Welcome to the Pathways School Noida Student Council Website</h1>
<p>Empowering Students to Make a Difference</p>
<a href="#about" class="btn">Learn More</a>
</section>
<section id="about">
<div class="container">
<h2>About Us</h2>
<p>[Description of the student council and its role at Pathways School Noida]</p>
</div>
</section>
<section id="events">
<div class="container">
<h2>Upcoming Events</h2>
<div class="event-card">
<h3>[Event Title]</h3>
<p class="date">[Event Date]</p>
<p class="location">[Event Location]</p>
</div>
<div class="event-card">
<h3>[Event Title]</h3>
<p class="date">[Event Date]</p>
<p class="location">[Event Location]</p>
</div>
</div>
</section>
<section id="housepoints">
<div class="container">
<h2>House Points</h2>
<div class="house-table">
<div class="table-row">
<div class="house-info">
<img src="images/fire-logo.png" alt="Fire House Logo" class="house-logo-small">
<span class="house-name">Fire House</span>
</div>
<div class="points">500</div>
</div>
<div class="table-row">
<div class="house-info">
<img src="images/water-logo.png" alt="Water House Logo" class="house-logo-small">
<span class="house-name">Water House</span>
</div>
<div class="points">450</div>
</div>
<div class="table-row">
<div class="house-info">
<img src="images/air-logo.png" alt="Air House Logo" class="house-logo-small">
<span class="house-name">Air House</span>
</div>
<div class="points">400</div>
</div>
<div class="table-row">
<div class="house-info">
<img src="images/earth-logo.png" alt="Earth House Logo" class="house-logo-small">
<span class="house-name">Earth House</span>
</div>
<div class="points">350</div>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<form>
<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" required></textarea>
</div>
<button type="submit" class="btn">Submit</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2023 Pathways School Noida Student Council</p>
</div>
</footer>
<!-- Custom Cursor -->
<div class="custom-cursor"></div>
<script src="script.js"></script>
</body>
</html>