-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
94 lines (54 loc) · 1.62 KB
/
Copy pathevents.html
File metadata and controls
94 lines (54 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>Campus Events</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Upcoming Campus Events</h1>
<p>Explore and participate in exciting 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="events-page">
<div class="event-card">
<img src="images/hackathon.jpg">
<h2>💻 Hackathon 2026</h2>
<p>📅 Date: August 15</p>
<p>📍 Venue: Main Auditorium</p>
<p>Build innovative solutions and compete with students.</p>
<a href="register.html">
<button>Register Now</button>
</a>
</div>
<div class="event-card">
<img src="images/workshop.jpg">
<h2>🎤 Tech Workshop</h2>
<p>📅 Date: September 5</p>
<p>📍 Venue: Computer Lab</p>
<p>Learn modern technologies from experts.</p>
<a href="register.html">
<button>Register Now</button>
</a>
</div>
<div class="event-card">
<img src="./images/culturals.png" width="300" height="200"> <h2>🎭 Cultural Fest</h2>
<p>📅 Date: October 10</p>
<p>📍 Venue: College Ground</p>
<p>Celebrate music, dance and creativity.</p>
<a href="register.html">
<button>Register Now</button>
</a>
</div>
</section>
<footer>
<p>© 2026 Campus Event Management System</p>
</footer>
</body>
</html>