-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvents.html
More file actions
58 lines (55 loc) · 2.28 KB
/
Copy pathEvents.html
File metadata and controls
58 lines (55 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="images\eventsicon.svg">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events Page</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav>
<div style="color: white; font-size: 28px; font-weight: bolder;">Campus Connect</div>
<div class="nav-toggle">☰</div>
<ul class="nav">
<li><a href="index.html"><i class="fas fa-home"></i> Home</a></li>
<li><a href="Discussions.html"><i class="fa-solid fa-comment-dots fa-flip-horizontal"
style="color: #ffffff;"></i> Discussions</a></li>
<li class="login"><a href="login.html">Login/SignUp</a></li>
</ul>
</nav>
</header>
<main style="min-height: 83vh;">
<h1 style="color: wheat; padding: 0;">Events</h1>
<div class="events">
<div class="event-tile">
<img src="images/hackathon.png" alt="Hackathon">
<h3>Hackathons</h3>
<p>Compete, innovate, and build creative projects with peers.</p>
</div>
<div class="event-tile">
<img src="images/sympo.png" alt="Symposium">
<h3>Symposiums</h3>
<p>Engage in academic discussions and present your research work.</p>
</div>
<div class="event-tile">
<img src="images/seminar.png" alt="Seminar">
<h3>Seminars</h3>
<p>Learn from experts and gain valuable knowledge in trending fields.</p>
</div>
<div class="event-tile">
<img src="images/sport.png" alt="Sports">
<h3>Sports</h3>
<p>Showcase your talent and team spirit in exciting sports events.</p>
</div>
</div>
</main>
<footer>
<p>© 2025 Campus-Connect | All rights reserved.</p>
</footer>
</body>
</html>