-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
400 lines (352 loc) · 15.1 KB
/
index.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic -->
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<!-- Mobile Metas -->
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/>
<!-- Site Metas -->
<link href="src/media/WesmunFavicon.svg" rel="shortcut icon" type="">
<title>Wesmun Home Page</title>
<!-- bootstrap core css -->
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" rel="stylesheet">
<!-- fonts style -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet"/>
<!-- font awesome style -->
<link href="src/css/font-awesome.min.css" rel="stylesheet"/>
<!-- Custom styles for this template -->
<link href="src/css/style.css" rel="stylesheet"/>
<!-- responsive style -->
<style>
@media (max-width: 1300px) {
}
@media (max-width: 1120px) {
}
@media (max-width: 992px) {
.hero_area {
min-height: auto;
}
.hero_area {
background: linear-gradient(130deg, #57465c, #57465c);
}
.hero_area .hero_bg_box {
display: none;
}
.slider_section {
padding: 45px 0 75px 0;
}
.custom_nav-container .navbar-nav {
padding-top: 15px;
align-items: center;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
padding: 5px 25px;
margin: 5px 0;
}
}
@media (max-width: 576px) {
.header_section .header_top .contact_nav a span {
display: none;
}
}
@media (max-width: 480px) {
.slider_section .detail-box h1 {
font-size: 2rem;
}
.track_section form {
flex-direction: column;
align-items: flex-start;
}
.track_section form input {
width: 100%;
}
.track_section form button {
padding: 10px 60px;
margin-top: 10px;
}
}
@media (max-width: 420px) {
.service_section .box {
flex-direction: column;
}
}
@media (max-width: 376px) {
}
@media (min-width: 1200px) {
.container {
max-width: 1170px;
}
}
</style>
<style>
#loading-screen {
position: fixed;
width: 100%;
height: 100%;
background: #4a3c50;
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
transition: opacity 1s ease-out;
}
#loading-screen.fade-out {
opacity: 0;
pointer-events: none;
}
#loading-video {
width: auto;
height: auto;
object-fit: cover;
}
.letter {
position: relative;
width: auto;
padding: 40px;
background: #f5e9e0;
border-radius: 8px;
font-size: 1.2em;
line-height: 1.6;
margin: 0 auto;
overflow: hidden; /* Ensures the pseudo-element doesn't overlap */
}
.letter::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 80px;
height: 80px;
background: linear-gradient(135deg, #f5e9e0 0%, #ebdcd0 100%);
clip-path: polygon(100% 100%, 0 100%, 100% 0);
box-shadow: inset 2px -2px 4px rgba(0, 0, 0, 0.1);
z-index: 2; /* Ensures it appears above the main box-shadow */
}
.letter::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 80px;
height: 80px;
background: #ebdcd0;
clip-path: polygon(0 0, 100% 0, 0 100%);
z-index: 2; /* Ensures it appears above the main box-shadow */
}
@media (max-width: 599px) {
.phone-break {
display: inline;
}
}
@media (min-width: 600px) {
.phone-break {
display: none;
}
}
.purple_bg {
background-color: #4a3c50; /* Adjust the color code to match the purple used in your project */
color: #ebdcd0; /* Ensure text is readable on the purple background */
}
</style>
</head>
<body class="sub_page">
<div id="loading-screen">
<video autoplay id="loading-video" loop muted>
<source src="src/media/Load.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</body>
<div id="licensePopupMinimized"
style="position: fixed; bottom: 20px; right: 20px; background: #333; color: white; padding: 10px 20px; border-radius: 10px; cursor: pointer; display: flex; justify-content: center; align-items: center; z-index: 1001; font-family: Arial, sans-serif;">
<span>📜 View License Agreement</span>
</div>
<div id="autoAcceptNotification"
style="position: fixed; bottom: 20px; right: 20px; background: #28a745; color: white; padding: 10px 20px; border-radius: 10px; display: none; z-index: 1002; font-family: Arial, sans-serif;">
License has been automatically accepted.
</div>
<div id="licensePopup"
style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); color: white; flex-direction: column; justify-content: center; align-items: center; z-index: 1000; font-family: Arial, sans-serif; display: none;">
<div style="background: #333; padding: 20px; border-radius: 10px; max-width: 600px; text-align: center;">
<h2>License Agreement</h2>
<div id="licenseText"
style="max-height: 300px; overflow-y: auto; text-align: left; background: #444; padding: 10px; border-radius: 5px; margin-bottom: 20px;">
<!-- License text will be inserted here -->
</div>
<label style="display: flex; align-items: center; margin-bottom: 20px;">
<input id="acceptCheckbox" style="margin-right: 10px;" type="checkbox"> I accept the terms and conditions
</label>
<button disabled
id="acceptButton"
style="padding: 10px 20px; background: #d32f2f; color: white; border: none; border-radius: 5px; cursor: pointer;">Accept
</button>
</div>
</div>
<div class="hero_area" style="height: auto; width: auto; padding:0;">
<div class="hero_bg_box">
<div class="bg_img_box">
<img alt="Hero Background" src="src/media/Background.png">
</div>
</div>
<!-- header section strategies -->
<header class="header_section">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg custom_nav-container ">
<a class="navbar-brand" href="index.html">
<span>
WESMUN 25
</span>
</a>
<button aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"
class="navbar-toggler" data-target="#navbarSupportedContent"
data-toggle="collapse" type="button">
<span class="">☰</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="venue_and_payments.html">Venue and Payment</a>
</li>
<li class="nav-item">
<a class="nav-link" href="committees.html">Committees</a>
</li>
<li class="nav-item">
<a class="nav-link" href="team.html">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="schedule.html">Schedule</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- end header section -->
<!-- slider section -->
<section class="slider_section ">
<div class="carousel slide" data-ride="carousel" id="customCarousel1">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container ">
<div class="row">
<div class="col-md-6 ">
<div class="detail-box">
<h1>
Welcome to WESMUN
</h1>
</div>
</div>
<div class="col-md-6 d-flex justify-content-center">
<img alt="" class="img animate__animated animate__bounceIn"
src="src/media/WesmunLogo.png">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end slider section -->
</div>
<!-- about section -->
<section class="about_section layout_padding">
<div class="container">
<div class="heading_container heading_center">
<h2>
About <span>WESMUN</span>
</h2>
<br>
<p>
Wesgreen Model United Nations (WESMUN) is an annual, student-led event hosted by Wesgreen International
School in Sharjah,
United Arab Emirates. Spanning three dynamic days, the conference offers students a platform to
represent countries,
debate pressing global issues, and collaborate on innovative solutions. WESMUN is more than just a
conference;
it is a transformative experience that hones essential skills such as public speaking, critical
thinking, diplomacy, negotiation,
and teamwork.
</p>
<p>
Model United Nations (MUN) serves as an academic simulation of the United Nations,
immersing students in the roles of delegates representing various countries or international
organizations.
Participants engage in rigorous research, structured debates, and the drafting of comprehensive
resolutions
to address complex global challenges, including climate change, human rights, and international
security.
This experience cultivates a deeper understanding of diplomacy, global governance,
and the intricacies of international relations. By fostering collaboration and leadership,
MUN equips students with the tools to think critically, communicate effectively,
and develop solutions that can make a meaningful impact on the world.
</p>
<div id="countdown" style="font-size: 1.5em; text-align: center; margin-top: 20px;"></div>
<br>
</div>
<div class="heading_container heading_center letter">
<div class="detail-box">
<h3>
Letter <span>from</span> our <span>Secretary</span> Generals
</h3>
<p>
<span class="phone-break"><br><br></span>
Dear Delegates and Organizers,
<br><br>
Welcome to the wesgreen International School Model United Nations (WESMUN) 2025.As the
Secretariat, we are excited to embark on this journey with all of you.
<br><br>
This year’s theme, "Global Resilience," reflects the importance of collective strength in
addressing the global challenges we face. From climate change to geopolitical tensions,
resilience is key to overcoming obstacles and building a sustainable future. At WESMUN, we aim
to foster meaningful dialogue and collaboration to help shape solutions for a more resilient
world.
<br><br>
We encourage all delegates to approach this conference with open minds, curiosity, and a
commitment to impactful discussions. Together, let’s make this conference both inspiring and
memorable.
<br><br>
Looking forward to an outstanding experience,
<br><br>
Secretary generals<br>
Moiz Raza,<br>
Rudaina Marei
</p>
</div>
</div>
<br>
</div>
</section>
<!-- end why section -->
<section class="contact_section layout_padding purple_bg">
<div class="container">
<div class="heading_container heading_center">
<h2>Contact Us</h2>
<p>Email: <a href="mailto:Admin@wesmun.com" style="color: wheat;">Admin@wesmun.com</a></p>
<p>Follow us on Instagram for regular updates: <a href="https://www.instagram.com/w.e.s.mun"
style="color: wheat;"
target="_blank">@w.e.s.mun</a></p>
</div>
</div>
</section>
<!-- JavaScript Files (Make sure to include them in this order) -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Include Owl Carousel CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" rel="stylesheet"/>
<!-- Include Owl Carousel JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<!-- Popper.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.6/umd/popper.min.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="src/js/index.loading.js"></script>
<script src="src/js/license.js"></script>
<script src="src/js/index.timer.js"></script>
<script src="src/js/prettyurl.js"></script>
</html>