-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (68 loc) · 2.2 KB
/
Copy pathindex.html
File metadata and controls
106 lines (68 loc) · 2.2 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
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
<!DOCTYPE html>
<html>
<head>
<title>Campus Event Management System</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>🎓 CampusConnect</h1>
<p>Your Gateway to Campus Events</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="events.html">Events</a>
<a href="register.html">Register</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
</nav>
<section class="hero">
<div class="hero-content">
<h2>Welcome to Campus Events</h2>
<p>
Discover exciting college events, register easily,
and never miss an opportunity.
</p>
<button>Explore Events</button>
</div>
</section>
<section class="events">
<h2>Upcoming Events</h2>
<div class="event-container">
<div class="event-card">
<img src="images/hackathon.jpg" alt="Hackathon Event">
<h3>💻 Hackathon 2026</h3>
<p>Build innovative projects and compete with talented students.</p>
<p>📅 Date: August 15</p>
<a href="register.html?event=Hackathon 2026">
<button>Register Now</button>
</a>
</div>
<div class="event-card">
<img src="images/workshop.jpg" alt="Workshop Event">
<h3>🎤 Tech Workshop</h3>
<p>Learn new technologies from industry experts.</p>
<p>📅 Date: September 5</p>
<a href="register.html?event=Tech Workshop">
<button>Register Now</button>
</a>
</div>
<div class="event-card">
<img src="images/culturals.png" alt="Cultural Event">
<h3>🎭 Cultural Fest</h3>
<p>Celebrate creativity, music, and talents.</p>
<p>📅 Date: October 10</p>
<a href="register.html?event=Cultural Fest">
<button>Register Now</button>
</a>
</div>
</div>
</section>
<footer>
<h3>🎓 CampusConnect</h3>
<p>Your Gateway to Campus Events</p>
<p>© 2026 CampusConnect. All Rights Reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>