-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstage_events.html
87 lines (80 loc) · 2.38 KB
/
stage_events.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stage Events - BLOSSOMS 2024-25</title>
<link rel="stylesheet" href="./css/stage_events.css" />
<link
href="https://fonts.googleapis.com/css2?family=Questrial&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="./assets/images/swo.png"
type="image/x-icon"
/>
</head>
<body>
<nav class="navbar">
<img src="./assets/images/swo-logo-tp.png" alt="SWO Logo" class="logo" />
<button class="mobile-menu-btn">
<span></span>
<span></span>
<span></span>
</button>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="events.html" class="active">Events</a>
<a href="schedule.html">Schedule</a>
<li><a href="results.html">Results</a></li>
<!-- <a href="#gallery">Gallery</a> -->
</div>
<img
src="./assets/images/cu-logo-tp.png"
alt="CHRIST Logo"
class="logo logo-cu"
/>
</nav>
<div class="main-content">
<!-- Events list will be populated by JavaScript -->
<div class="events-list"></div>
<!-- Event details will be updated by JavaScript -->
<div class="event-details"></div>
</div>
<footer>
<div class="footer-content">
<div class="divider-line"></div>
<p>
In case of queries, please drop a mail to
</p>
<p>or visit the SWO Office on 7th Floor, Block C.</p>
<br />
<p>
Made with <span class="heart">❤</span> in CHRIST University,
Yeshwanthpur
</p>
<p>
Made by
<a
href="https://www.linkedin.com/in/adarshagupta/"
target="_blank"
rel="noopener noreferrer"
style="color: inherit; text-decoration: underline"
>Adarsh Gupta</a
>
&
<a
href="https://www.linkedin.com/in/shashwatk1956/"
target="_blank"
rel="noopener noreferrer"
style="color: inherit; text-decoration: underline"
>Shashwat</a
>
</p>
</div>
</footer>
<script src="./jsfile/stage_events.js"></script>
</body>
</html>