-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsquabble.html
483 lines (433 loc) · 21.3 KB
/
squabble.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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description" content="TechopediaX website of IEEE student chapter of SIES GST, Navi Mumbai." />
<meta name="keywords"
content="IEEE,, siesgst, SIESGST, official, student, website, TechopediaX, techopedia10.0, techopedia" />
<!--whatsapp and fb-->
<meta property="og:description" content="TechopediaX website of IEEE student chapter of SIES GST, Navi Mumbai." />
<meta property="og:url" content="https://techopedia.ieeesiesgst.in/" />
<meta property="og:image:alt" content="IEEE SIES GST" />
<!--twitter-->
<meta property="twitter:description"
content="TechopediaX website of IEEE student chapter of SIES GST, Navi Mumbai." />
<!--whatsapp and fb-->
<meta property="og:title" content="TechopediaX | IEEE SIESGST" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://ieeesiesgst.in/popupimg.jpg" />
<meta property="og:image:type" content="image/jpg" />
<meta property="og:image:width" content="1000" />
<meta property="og:image:height" content="500" />
<!--twitter-->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="TechopediaX | IEEE SIESGST" />
<meta property="twitter:image" content="https://ieeesiesgst.in/popupimg.jpg" />
<title>Techopedia X | IEEE SIESGST </title>
<link rel="icon" type="image/x-icon" href="../Image/Tab_icon.png">
<!-- bootstrap cdns -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:100,100i,300,300i,400,400i,500,500i,700,700i"
rel="stylesheet" />
<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=Poppins&family=Space+Grotesk:wght@700&display=swap"
rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="style.css">
<script>
window.addEventListener('scroll', (event) => {
let yOffset = window.pageYOffset;
if (yOffset >= 40) {
document.getElementById('navBg').classList.remove('homeBg')
}
else {
document.getElementById('navBg').classList.remove('homeBg')
}
});
</script>
</head>
<body>
<div class="wrapper">
<nav class="homeBg" id="navBg">
<span id="brand">
<a href="https://techopedia.ieeesiesgst.in/"><img class="logo" src="IEEE SIESGST_white.png" alt=""></a>
</span>
<ul id="menu" class="menu pt-3">
<li class="nav">
<a href="https://techopedia.ieeesiesgst.in/#home">Home<span>.</span></a>
</li>
<li class="nav">
<a href="https://techopedia.ieeesiesgst.in/#events">Events<span>.</span></a>
</li>
<li class="nav">
<a href="https://techopedia.ieeesiesgst.in/#timeline">Timeline<span>.</span></a>
</li>
<li class="nav">
<a href="https://techopedia.ieeesiesgst.in/#faq">FAQ<span>.</span></a>
</li>
<li class="nav">
<a href="https://techopedia.ieeesiesgst.in/#sponsors">Sponsors<span>.</span></a>
</li>
</ul>
<div id="toggle">
<div class="span">menu</div>
</div>
</nav>
<div class="mobile-nav" id="resize">
<div class="close-btn">close</div>
<ul id="menu">
<li>
<a href="https://techopedia.ieeesiesgst.in/#home">Home<span>.</span></a>
</li>
<li>
<a href="https://techopedia.ieeesiesgst.in/#events">Events<span>.</span></a>
</li>
<li>
<a href="https://techopedia.ieeesiesgst.in/#timeline">Timeline<span>.</span></a>
</li>
<li>
<a href="https://techopedia.ieeesiesgst.in/#faq">FAQ<span>.</span></a>
</li>
<li>
<a href="https://techopedia.ieeesiesgst.in/#sponsors">Sponsors<span>.</span></a>
</li>
</ul>
</div>
<!--------------- navbar starts here --------------->
<!--------------- navbar ends here --------------->
<!------------------------------- img----------------- -->
<div class="test-header"></div>
<div class="img">
<img src="squabble.png" class="img-fluid" alt="...">
</div>
<!----------------------- Event---------------------------------- -->
<div class="event">
<h1 class="Event-heading">Squabble</h1>
<p class="Event-para">
Staged in the year 2040, a team of elite Chrononauts is made to pass through a gateway situated deep in the
oceanic bed
enabling them to jump to a past timeline. The task at hand is to remold events of the past in order to have a
brighter
future. Unaware of the disruption they caused in the balance between time and space, the travelers return back
to the
present to face the inevitable 'Phenomenon of Causality'. Unable to comprehend the horrifying effect of the
altered
past, the team of those three engage in an intriguing debate with their regimen to make decisions that could
possibly
put at stake the lives of millions and the trillions in all the timelines around them.
</p>
<p class="Event-para">
A team of three is required for this national-level debate competition wherein you will be participating in three
rounds.
These rounds would be the reflection of a plethora of surprise elements that revolve around a storyline.
The takeaway would be to test your team's ability to debate in a more fun and expressive way, compelling you to
display
the best of your oratory skills.
Also for our top teams, we have in store various exciting goodies/ cash prizes to reward the exceptional
performances
that you have put through!
</p>
<h5 class="Event-about">Rounds: 3</h5>
<h5 class="Event-about">Max team of: 3</h5>
<!-- <h5 class="Event-about">Have any queries? <br>Contact us at: <span class="Event-about1 ps-md-3 ps-lg-0">  
Ojas Vighne <a href="tel:9137723348" class="phn">(+91 9137723348)</a>     Shivam Pandey <a
href="tel:8433777820" class="phn">(+91 8433777820)</a></span>
</h5> -->
<h5 class="Event-about">Have any queries?, Contact us at: <li> <span class="Event-about1">
Ojas Vighne
<a href="tel:9137723348" class="phn">(+91 9137723348)</a>
</span></li>
<li><span class="Event-about1">
Shivam Pandey<a
href="tel:84337778207" class="phn"> (+91 8433777820)</a>
</span> </li>
</span></h5>
</div>
<!----------------------------------- Form------------------------------ -->
<div id="preloader" style="display: none">
<span id="loadingText" class="text-white">Loading...</span>
</div>
<section class="hero-container">
<div class="hero-form">
<section class="form-container">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="Team2Form" data-bs-toggle="tab" type="button">
Team Of 3
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="Team1Form" data-bs-toggle="tab" type="button">
Need a Team?
</button>
</li>
</ul>
<form id="squabble" action="#" class="form">
<div class="underline">
<u>Team Member 1</u>
</div>
<div class="form-component">
<label class="label" for="name">Full Name</label>
<input type="text" id="name1" class="form-control form-input p-5" name="name"
placeholder="Enter your Full Name" required />
</div>
<div class="form-component">
<label class="label" for="name">Email Id</label>
<input type="email" class="form-control" id="email1" name="email" placeholder="Enter your Email"
required />
</div>
<div class="form-component">
<label class="label" for="name">Phone No.</label>
<input type="text" class="form-control" id="phone1" name="phone" placeholder="Enter your Phone Number"
required />
<!-- pattern="[7-9]{1}[0-9]{9}" -->
</div>
<div class="form-component">
<label class="label" for="college_name">College Name</label>
<input type="text" class="form-control" id="college_name1" name="college_name"
placeholder="Enter your College Name" required />
</div>
<div class="form-component">
<label class="label" for="branch_name">Branch</label></br>
<input type="text" class="form-control branch1" id="branch1" name="branch" placeholder="Enter your branch" required/>
<!-- <select class="branch1" id="branch1" name="branch" required>
<option value="" disabled selected>Select your branch</option>
<option value="CE">Computer Engineering</option>
<option value="IT">Information Technology</option>
<option value="EXTC">Electronics & Telecommunication</option>
<option value="ECS">Electronics & Computer Science</option>
<option value="MECH">Mechanical Engineering</option>
<option value="PPT">Printing & Packaging Technology</option>
<option value="AI & Data Science">Artificial Intelligence & Data Science</option>
<option value="AI & ML">Artificial Intelligence & Machine Learning</option>
<option value="CS & Engineering">Computer Science & Engineering</option>
</select> -->
</div>
<div class="form-component">
<label class="label" for="name">Year Of Study</label></br>
<input type="text" class="form-control year1" id="year1" name="year1" placeholder="Enter your year" required/>
</div>
<!-------------------------------------------Member 2 ----------------------------------->
<div id="form2">
<div class="underline">
<u>Team Member 2</u>
</div>
<div class="form-component">
<label class="label" for="name">Full Name</label>
<input type="text" class="form-control form-input" name="name2" placeholder="Enter your Full Name"
id="name2" required />
</div>
<div class="form-component">
<label class="label" for="name">Email Id</label>
<input type="email" id="email2" class="form-control" name="email2" placeholder="Enter your Email"required />
</div>
<div class="form-component">
<label class="label" for="name">Phone No.</label>
<input type="text" id="phone2" class="form-control" name="phone" placeholder="Enter your Phone Number" required
/>
<!-- pattern="[7-9]{1}[0-9]{9}" -->
</div>
<div class="form-component">
<label class="label" for="college_name">College Name</label>
<input type="text" class="form-control" id="college_name2" name="college_name2"
placeholder="Enter your College Name"required />
</div>
<div class="form-component">
<label class="label" for="branch_name">Branch</label></br>
<input type="text" class="form-control branch1" id="branch2" name="branch" placeholder="Enter your branch" required/>
<!-- <select class="branch1" id="branch2" name="branch">
<option value="" disabled selected>Select your branch</option>
<option value="CE" class="my-3">Computer Engineering</option>
<option value="IT">Information Technology</option>
<option value="EXTC">Electronics & Telecommunication</option>
<option value="ECS">Electronics & Computer Science</option>
<option value="MECH">Mechanical Engineering</option>
<option value="PPT">Printing & Packaging Technology</option>
<option value="AI & Data Science">Artificial Intelligence & Data Science</option>
<option value="AI & ML">Artificial Intelligence & Machine Learning</option>
<option value="CS & Engineering" class="p-2">Computer Science & Engineering</option>
</select> -->
</div>
<!-- <div class="form-component">
<label class="label" for="name">Year</label>
<div id="year2" name="year2">
<input type="radio" id="FE2" name="year2" value="FE" />
<label for="FE">FE</label><br />
<input type="radio" id="SE2" name="year2" value="SE" />
<label for="SE">SE</label><br />
<input type="radio" id="TE2" name="year2" value="TE" />
<label for="TE">TE</label><br />
<input type="radio" id="BE2" name="year2" value="BE" />
<label for="BE">BE</label>
</div>
</div> -->
<div class="form-component">
<label class="label" for="name">Year Of Study</label></br>
<input type="text" class="form-control year2" id="year2" name="year2" placeholder="Enter your year" required/>
</div>
<div class="underline">
<u>Team Member 3</u>
</div>
<div class="form-component">
<label class="label" for="name">Full Name</label>
<input type="text" class="form-control form-input" name="name3" placeholder="Enter your Full Name"
id="name3"required />
</div>
<div class="form-component">
<label class="label" for="name">Email ID</label>
<input type="email" id="email3" class="form-control" name="email3" placeholder="Enter your Email" required/>
</div>
<div class="form-component">
<label class="label" for="name">Phone No.</label>
<input type="text" id="phone3" class="form-control" name="phone3" placeholder="Enter your Phone Number"required
/>
<!-- pattern="[7-9]{1}[0-9]{9}" -->
</div>
<div class="form-component">
<label class="label" for="college_name">College Name</label>
<input type="text" class="form-control" id="college_name3" name="college_name3"
placeholder="Enter your College Name" required/>
</div>
<div class="form-component">
<label class="label" for="branch_name">Branch</label></br>
<input type="text" class="form-control branch1" id="branch3" name="branch" placeholder="Enter your Branch" required/>
</div>
<div class="form-component">
<label class="label" for="name">Year Of Study</label></br>
<input type="text" class="form-control year3" id="year3" name="year3" placeholder="Enter your year"required/>
</div>
</div>
<div class="button-group">
<button type="submit" class="button">Register</button>
</div>
</form>
</section>
</div>
</section>
<!--------------- footer starts here --------------->
<footer class="footer">
<div class="container">
<div class="hr">
<div class="row"></div>
</div>
<br /><br />
<div class="info">
<div class="row">
<div class="col-lg-4" id="personal">
<h3>Explore.</h3>
<div class="explore">
<a href="#home" data-wow-delay="0.2s">Home</a>
<a href="#events" data-wow-delay="0.2s">Events</a>
<a href="mailto: [email protected]" data-wow-delay="0.2s">Contact</a>
</div>
</div>
<div class="col-lg-4 footer-column">
<h3 class="follow-us">Follow us at.</h3>
<ul class="social-links">
<li id="insta" class="wow fadeInUp" data-wow-delay="0.6s"><a target="_blank"
href="https://www.instagram.com/ieeesiesgst/?hl=en"><img src="../Image/InstagramLogo (1).png"
alt=""></a>
</li>
<li class="wow fadeInUp" data-wow-delay="1s"><a target="_blank"
href="https://www.linkedin.com/company/ieee-gst"><img src="../Image/LinkedinLogo.png" alt=""></a></li>
<li class="wow fadeInUp" data-wow-delay="0.8s"><a target="_blank"
href="https://twitter.com/_ieeesiesgst?s=09"><img src="../Image/twitter logo.png" alt=""></li>
<li class="wow fadeInUp" data-wow-delay="1s"><a target="_blank"
href="https://www.youtube.com/c/IEEESIESGST"><img src="../Image/youtube logo.png" alt=""></a></li>
<li class="wow fadeInUp" data-wow-delay="0.4s"><a target="_blank"
href="https://www.facebook.com/groups/714385779076148/?ref=share"><img
src="../Image/FacebookLogo.png" alt=""></a></li>
<li class="wow fadeInUp" data-wow-delay="1s"><a target="_blank"
href="https://open.spotify.com/show/08snSfTbCS9EcxWTDIJYuV?si=s5eliMbwTPeOXAC2ZG8MDg&utm_source=copy-link"><img
src="../Image/SpotifyLogo.png" alt=""></a></li>
<li class="wow fadeInUp" data-wow-delay="1s"><a target="_blank"
href="https://github.com/ieeesiesgst"><img src="../Image/github logo.png" alt=""></a></li>
</ul>
<br /><br />
</div>
<div class="col-lg-4" id="address">
<h3 class="Reach-us">Reach us at.</h3>
<h4 data-wow-delay="0.2s"><span><a href="mailto: [email protected]">
</a></span></h4>
<!-- <a href="tel:908923792" data-wow-delay="0.2s">+91 908923792
</h4>
<a href="tel:899023723" data-wow-delay="0.2s">+91 899023723</h4> -->
<!-- <br /><br /> -->
<div class="official-website"><a href="https://ieeesiesgst.in/" target="_blank" data-wow-delay="0.2s"> Visit our official site.</a> </div>
</div>
</div>
<h3 class="copyright"> © 2021 - 2022</h3>
</div>
</div>
<br />
</footer>
<!--------------- footer ends here --------------->
</div>
<!-- greensock cdn -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.2/TweenMax.min.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script type="text/javascript">
// navigation starts here
$("#toggle").click(function () {
$(this).toggleClass("on");
$("#resize").toggleClass("active");
});
$("#resize ul li a").click(function () {
$(this).toggleClass("on");
$("#resize").toggleClass("active");
});
$(".close-btn").click(function () {
$(this).toggleClass("on");
$("#resize").toggleClass("active");
});
TweenMax.from("#brand", 1, {
delay: 0.4,
y: 10,
opacity: 0,
ease: Expo.easeInOut,
});
TweenMax.staggerFrom(
"#menu li a",
1,
{
delay: 0.4,
opacity: 0,
ease: Expo.easeInOut,
},
0.1
);
// nav animation ends
</script>
<script src="script.js"></script>
</body>
</html>
<script>
const accordionItemHeaders = document.querySelectorAll(".accordion-item-header");
accordionItemHeaders.forEach(accordionItemHeader => {
accordionItemHeader.addEventListener("click", event => {
accordionItemHeader.classList.toggle("active");
const accordionItemBody = accordionItemHeader.nextElementSibling;
if (accordionItemHeader.classList.contains("active")) {
accordionItemBody.style.maxHeight = accordionItemBody.scrollHeight + "px";
accordionItemHeader.style.backgroundColor = "#000516";
accordionItemHeader.style.border = "#fff solid 1px";
}
else {
accordionItemBody.style.maxHeight = 0;
accordionItemHeader.style.backgroundColor = "transparent";
accordionItemHeader.style.border = "#fff solid 1px";
}
});
});
</script>