forked from mlsacbvp/MLSAC-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Events.html
149 lines (123 loc) · 4.47 KB
/
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YGW0KL1CX5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-YGW0KL1CX5');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="events/css/header.css" rel="stylesheet">
<link rel="stylesheet" href="events/css/upcoming-events.css">
<link rel="stylesheet" href="events/css/past-events.css">
<link rel="stylesheet" href="events/css/slides.css">
<link rel="stylesheet" href="events/css/utility.css">
<link rel="stylesheet" href="events/css/footer.css">
<link rel="stylesheet" href="events/css/style.css">
<link rel="stylesheet" href="events/css/sep-events-responsive.css">
<link rel="stylesheet" href="events/css/seperate-events.css">
<link rel="stylesheet" href="events/css/responsive.css">
<link rel="stylesheet" media="screen and (max-width: 900px)" href="events/css/media.css">
<link rel="shortcut icon" href="Teams/assets/favicon.ico" type="image/x-icon">
<title>Events</title>
</head>
<body>
<navbar class="nav">
<div class="header">
<div class="logo">
<a href="index.html"><img src="aboutus/aboutus_assets/MLSCLogo.png" alt="MLSC Logo"></a>
</div>
<div class="links">
<ul>
<li><a href="aboutus.html" class="black-text">About</a></li>
<li><a href="ourteam.html" class="black-text">Team</a></li>
<li><a href="contactus.html" class="black-text">Contact Us</a></li>
</ul>
</div>
</div>
</navbar>
<div class="landing-page">
<img src="events/assets/1.png" id="img-1">
<img src="events/assets/2.png" id="img-2">
<img src="events/assets/3.png" id="img-3">
</div>
<div class="main-heading">
<h2>
EVENTS
</h2>
</div>
<div class="page-desc">
<span>
We, at Microsoft Learn Student Ambassadors' Chapter has conducted events in various domains;
ranging from Open-Source, ML, Business Pitching, DevOps, Web Dev to a lot of fun events. Do register
in our upcoming event if you are interested!
</span>
</div>
<section class="upcoming-events events">
<div class="heading">
<h2>
Upcoming Event
</h2>
</div>
<div class="event-desc" id="event-desc">
</div>
<div class="cta">
<span id="EventRegButton">
<button class="register">
<a href="https://unstop.com/hackathon/web-d-verse-bharati-vidyapeeths-college-of-engineering-bvcoe-new-delhi-404419?lb=w7fprHy" target="_blank" class="register-btn_text">
REGISTERATION OPEN
</a>
<!-- once registrations starts, this button will be updated with the registration link -->
</button></span>
</div>
</section>
<section class="past-events events">
<h2 class="past-heading heading">
Past Events
</h2>
<div class="past-container">
<div class="arrows">
<a class="prev" id="prev">❮</a>
<div id="past-events-details" style="display:flex ;">
<!-- add new events details here -->
</div>
<a class="next" id="next">❯</a>
</div>
</div>
</section>
<div class="bottom">
<div class="socials">
<div class="handles">
<a href="https://www.instagram.com/mlsac_bvcoe/"><img src="aboutus/aboutus_assets/instagram.png"
alt="insta logo"></a>
</div>
<div class="handles">
<a href="https://github.com/mlsacbvp"><img src="aboutus/aboutus_assets/github.png" alt="github logo"></a>
</div>
<div class="handles">
<a href="https://twitter.com/MlscBvp?t=ueaZK33_AhBI93rNVCT6vQ&s=09"><img
src="aboutus/aboutus_assets/twitter.png" alt="twitter logo"></a>
</div>
<div class="handles">
<a href="https://www.linkedin.com/company/mlsacbvp/"><img src="aboutus/aboutus_assets/linkedin.png"
alt="linkedin logo"></a>
</div>
</div>
<footer class="footer">
<span class="white-text">
©MLSACBVP All Rights Reserved.
</span>
<br>
<span class="white-text">
Designed & Developed by the Web Team of MLSACBVP
</span>
</footer>
</div>
<script src="events/scripts/past-events.js"></script>
</body>
</html>