-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.38 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Club</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Welcome to the Coding Club</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/about.html">About</a></li>
<li><a href="pages/events.html">Events</a></li>
<li><a href="pages/contact.html">Contact</a></li>
<li><a href="profile/">Profiles</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Explore, Code, Innovate!</h2>
<p>Join our community of passionate coders and tech enthusiasts.</p>
<a href="pages/about.html" class="btn">Learn More</a>
</section>
<section class="profiles">
<h2>Meet Our Members</h2>
<ul>
<li><a href="profile/member1/">Member 1</a></li>
<li><a href="profile/member2/">Member 2</a></li>
<li><a href="profile/member3/">Member 3</a></li>
<li><a href="./profile/firstchild4161/">Ved Bhandary</a></li>
</ul>
</section>
<footer>
<p>© 2025 Coding Club. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>