-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
316 lines (266 loc) · 12.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>TJMUN - Home</title>
<meta content="" name="description">
<meta content="" name="keywords">
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/css/main.css" rel="stylesheet">
<script>
function incrementViews() {
let views = parseInt(localStorage.getItem('views')) || 0;
views++;
localStorage.setItem('views', views);
document.getElementById('viewCount').textContent = views;
}
window.onload = function() {
incrementViews();
}
</script>
</head>
<body>
<div class="breadcrumbs">
<div class="page-header d-flex align-items-center" style="position: relative; overflow: hidden;">
<video autoplay loop muted playsinline style="position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%);">
<source src="assets/img/TJ Model UN Video.mp4" type="video/mp4">
</video>
<div class="container position-relative">
<div class="row d-flex justify-content-center">
<div class="col-lg-6 text-center">
<h2>TJMUN</h2>
</div>
</div>
</div>
</div> <nav>
<div class="container">
<ol>
<li><a href="index.html">Home</a></li>
<li>TJMUN</li>
</ol>
</div>
</nav>
</div>
<header id="header" class="header d-flex align-items-center fixed-top">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<img src="assets/img/logo5.png" alt="" >
<h1>TJMUN</h1>
</a>
<i class="mobile-nav-toggle mobile-nav-show bi bi-list"></i>
<i class="mobile-nav-toggle mobile-nav-hide d-none bi bi-x"></i>
<nav id="navbar" class="navbar">
<ul>
<li><a href="index.html" class="active">HOME</a></li>
<li><a href="Leadership.html">LEADERSHIP</a></li>
<li><a href="Calendar.html">CALENDAR</a></li>
<li class="dropdown"><a href="TECHMUN.html"><span>TECHMUN</span> <i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<li><a href="Registration.html">Registration</a></li>
<li><a href="Invitation.html">Invitation</a></li>
<li><a href="Directors.html">Directors</a></li>
<li><a href="Committees.html">Committees</a></li>
<li><a href="Schedule.html">Schedule</a></li>
<li><a href="Position Papers.html">Position Papers</a></li>
<li><a href="Guest Speakers.html">Guest Speakers</a></li>
</ul>
</li>
<li><a href="Forms.html">FORMS</a></li>
<li><a href="Awards.html">AWARDS</a></li>
<li><a href="Contact Us.html">CONTACT US</a></li>
</ul>
</nav>
</div>
</header>
<br>
<br>
<main id="main">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Number Counter Widget</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="counter-container">
<div class="counter">
<span class="icon"><img src="assets/img/people_icon.jpg"></span>
<h6><span > </span></h6>
<h2><span class="count" data-target="1200">0</span>+<br> Delegates at TECHMUN</h2>
</div>
<div class="counter">
<span class="icon"><img src="assets/img/gavel.png"></span>
<h6><span > </span></h6>
<h2><span class="count" data-target="100">0</span>+<br> Gavels in past 3 years</h2>
</div>
<div class="counter">
<span class="icon"><img src="assets/img/clock.png"></span>
<h6><span > </span></h6>
<h2><span class="count" data-target="20">0</span>+<br> Years since founded</h2>
</div>
</div>
<script src="script.js"></script>
</body>
<br>
<h1 class="text-center" style="color: rgb(11, 11, 89); margin-top: 50px;">About Model UN</h1>
<div class="container">
<p class="lead" style="margin-bottom: 5px;">Model United Nations encompasses a simulation of the UN whereby students engage in political debate to tackle current global issues on the agenda. Based on their committees, students are assigned a delegate and are tasked with preparing draft resolutions, negotiating with others, and resolving conflicts while following proper parliamentary procedure.</p>
</div>
</div>
</section>
<section id="featured-services" class="featured-services" style="text-align: center;">
<div class="container">
<div class="row gy-4" style="justify-content: center;">
<div class="col-lg-4 col-md-6 service-item d-flex" data-aos="fade-up">
<div>
<h4 class="title">Leadership</h4>
<p class="description">Our delegates possess leadership skills that enable them to command and lead blocs in committee while maintaining successful relations with others.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 service-item d-flex" data-aos="fade-up" data-aos-delay="300">
<div>
<h4 class="title">Diplomacy</h4>
<p class="description">Delegates manage international relations through negotiations and handle affairs effectively without arousing hostility.</p>
</div>
</div>
</div>
<div class="row gy-4" style="justify-content: center;">
<div class="col-lg-4 col-md-6 service-item d-flex" data-aos="fade-up" data-aos-delay="600">
<div>
<h4 class="title">Public Policy</h4>
<p class="description">Delegates inquire about specific public polities and implement various others to directly resolve issues in their committee's agenda.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 service-item d-flex" data-aos="fade-up" data-aos-delay="900">
<div>
<h4 class="title">Research</h4>
<p class="description">Students research respective topics for their committee to develop a strong background and foundation leading to success.</p>
</div>
</div>
</div>
</div>
</section>
<section id="testimonials" class="testimonials">
<div class="container">
<div class="slides-1 swiper" data-aos="fade-up">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/adithiya.jpg" class="testimonial-img" alt="" style="width: 200px; height: 200px;">
<h3>Adithiya Balaguru</h3>
<h4>Secretary-General</h4>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Hey Everyone! My Name is Adithiya Balaguru and I will be serving as the Secretary General of TJMUN for the 2024-2025 school year. I look forward to continue to grow the club while carrying on the legacy the seniors left!
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/rohith.jpg" class="testimonial-img" alt="" style="width: 200px; height: 200px;">
<h3>Rohith Yelisetty</h3>
<h4>Under Secretary-General</h4>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/arnav.jpg" class="testimonial-img" alt=""style="width: 200px; height: 200px;">
<h3>Arnav Bandam</h3>
<h4>Senator</h4>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/akshaya.jpg" class="testimonial-img" alt="" style="width: 200px; height: 200px;">
<h3>Akshaya Lohia</h3>
<h4>Arbitrator</h4>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
</main>
<footer id="footer" class="footer">
<div class="container">
<div class="row gy-4">
<div class="col-lg-5 col-md-12 footer-info">
<a href="index.html" class="logo d-flex align-items-center">
<span>TJMUN</span>
</a>
<div class="social-links d-flex mt-4">
<a href="https://www.facebook.com/tjhsstmun" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="https://www.instagram.com/tjhsstmun/" class="instagram"><i class="bi bi-instagram"></i></a>
</div>
</div>
<div class="col-lg-2 col-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Leadership.html">Leadership</a></li>
<li><a href="Calendar.html">Calendar</a></li>
<li><a href="TECHMUN.html">TECHMUN</a></li>
<li><a href="Forms.html">Forms</a></li>
<li><a href="Awards.html">Awards</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-12 footer-contact text-center text-md-start">
<h4>Contact Us</h4>
<p>
6560 Braddock Rd <br>
Alexandria, VA 22312<br>
United States <br><br>
<strong>Phone:</strong> (703)-585-8284<br>
<strong>Email:</strong> [email protected]<br>
</p>
</div>
</div>
</div>
<div class="container mt-4">
<div class="copyright">
© Copyright <strong><span>TJMUN</span></strong>. All Rights Reserved.
</div>
<div class="credits">
</div>
</div>
</footer>
<a href="#" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<div id="preloader"></div>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>