-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschool-website
More file actions
39 lines (33 loc) · 755 Bytes
/
school-website
File metadata and controls
39 lines (33 loc) · 755 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>School Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="school-website">
<header>
<h1>My School Name</h1>
</header>
<section>
<h2>About Us</h2>
<p>Brief description of your school: history, location, vision, and mission.</p>
</section>
<section>
<h2>Clubs & Activities</h2>
<ul>
<li>Science Club</li>
<li>Debate Club</li>
<li>Drama Club</li>
<li>Sports Team</li>
</ul>
</section>
<section>
<h2>Gallery</h2>
<p>Add images of school events here. Example: <code><img src="images/event1.jpg" alt="Event"></code></p>
</section>
<footer>
Built for the CodeOnDigital Schools Hackathon
</footer>
</body>
</html>