-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
962 lines (836 loc) · 66.2 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
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
<html lang="en" class="csstransforms csstransforms3d csstransitions"><head>
<style>.LGLeeN-keyboard-shortcuts-view{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.LGLeeN-keyboard-shortcuts-view table,.LGLeeN-keyboard-shortcuts-view tbody,.LGLeeN-keyboard-shortcuts-view td,.LGLeeN-keyboard-shortcuts-view tr{background:inherit;border:none;margin:0;padding:0}.LGLeeN-keyboard-shortcuts-view table{display:table}.LGLeeN-keyboard-shortcuts-view tr{display:table-row}.LGLeeN-keyboard-shortcuts-view td{-moz-box-sizing:border-box;box-sizing:border-box;display:table-cell;color:#000;padding:6px;vertical-align:middle;white-space:nowrap}.LGLeeN-keyboard-shortcuts-view td .VdnQmO-keyboard-shortcuts-view--shortcut-key{background-color:#e8eaed;border-radius:2px;border:none;-moz-box-sizing:border-box;box-sizing:border-box;color:inherit;display:inline-block;font-family:Google Sans Text,Roboto,Arial,sans-serif;line-height:16px;margin:0 2px;min-height:20px;min-width:20px;padding:2px 4px;position:relative;text-align:center}
</style><style>.gm-control-active>img{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:none;left:50%;pointer-events:none;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.gm-control-active>img:nth-child(1){display:block}.gm-control-active:focus>img:nth-child(1),.gm-control-active:hover>img:nth-child(1),.gm-control-active:active>img:nth-child(1),.gm-control-active:disabled>img:nth-child(1){display:none}.gm-control-active:focus>img:nth-child(2),.gm-control-active:hover>img:nth-child(2){display:block}.gm-control-active:active>img:nth-child(3){display:block}.gm-control-active:disabled>img:nth-child(4){display:block}
</style><link type="text/css" rel="stylesheet" href="/fonts.googleapis.com/css?family=roboto300,400,500,700|google+sans:400,500,700|google+sans+text:400&lang=en.html"><link type="text/css" rel="stylesheet" href="/fonts.googleapis.com/css?family=google+sans+text400&text=%e2%86%90%e2%86%92%e2%86%91%e2%86%93&lang=en.html"><style>.gm-ui-hover-effect{opacity:.6}.gm-ui-hover-effect:hover{opacity:1}.gm-ui-hover-effect>span{background-color:#000}@media (forced-colors:active),(prefers-contrast:more){.gm-ui-hover-effect>span{background-color:ButtonText}}
</style><style>.gm-style .gm-style-cc a,.gm-style .gm-style-cc button,.gm-style .gm-style-cc span,.gm-style .gm-style-mtc div{font-size:10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gm-style .gm-style-cc a,.gm-style .gm-style-cc button,.gm-style .gm-style-cc span{outline-offset:3px}
</style><style>@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}</style><style>.dismissButton{background-color:#fff;border:1px solid #dadce0;color:#1a73e8;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;font-family:Roboto,sans-serif;font-size:14px;height:36px;cursor:pointer;padding:0 24px}.dismissButton:hover{background-color:rgba(66,133,244,.04);border:1px solid #d2e3fc}.dismissButton:focus{background-color:rgba(66,133,244,.12);border:1px solid #d2e3fc;outline:0}.dismissButton:focus:not(:focus-visible){background-color:#fff;border:1px solid #dadce0;outline:none}.dismissButton:focus-visible{background-color:rgba(66,133,244,.12);border:1px solid #d2e3fc;outline:0}.dismissButton:hover:focus{background-color:rgba(66,133,244,.16);border:1px solid #d2e2fd}.dismissButton:hover:focus:not(:focus-visible){background-color:rgba(66,133,244,.04);border:1px solid #d2e3fc}.dismissButton:hover:focus-visible{background-color:rgba(66,133,244,.16);border:1px solid #d2e2fd}.dismissButton:active{background-color:rgba(66,133,244,.16);border:1px solid #d2e2fd;-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);-moz-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15)}.dismissButton:disabled{background-color:#fff;border:1px solid #f1f3f4;color:#3c4043}
</style><style>.gm-style-moc{background-color:rgba(0,0,0,.45);pointer-events:none;text-align:center;-webkit-transition:opacity ease-in-out;-o-transition:opacity ease-in-out;transition:opacity ease-in-out}.gm-style-mot{color:white;font-family:Roboto,Arial,sans-serif;font-size:22px;margin:0;position:relative;top:50%;-moz-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}
</style><style>.gm-style img{max-width: none;}.gm-style {font: 400 11px Roboto, Arial, sans-serif; text-decoration: none;}</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<meta charset="utf-8">
<title>T6</title>
<link rel="shortcut icon" href="./assets/logo-white.png" type="image/x-icon">
<link rel="icon" href="./assets/logo-white.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The Flagship Event of IEEE SB SJCET">
<meta name="author" content="IEEE SB SJCET">
<meta property="og:image" content="http://tesseract.sjcetpalai.ac.in/assets/cover-sjcet.png">
<meta property="og:title" content="Tesseract 6.0">
<meta property="og:description" content="The Flagship Event of IEEE SB SJCET">
<meta property="og:url" content="https://tesseract.sjcetpalai.ac.in/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Tesseract 6.0">
<meta property="og:locale" content="en_US">
<meta name="keywords" content="IEEE Kerala Section, ieee, sjcet, sjcetpalai, palai, tesseract, t6, tesseract 6.0">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="google" content="nositelinkssearchbox">
<meta name="google" content="notranslate">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="tesseract.sjcetpalai.ac.in">
<meta property="twitter:url" content="http://tesseract.sjcetpalai.ac.in">
<meta name="twitter:title" content="Tesseract 6.0">
<meta name="twitter:description" content="The Flagship Event of IEEE SB SJCET">
<meta name="twitter:image" content="http://tesseract.sjcetpalai.ac.in/assets/cover-sjcet.png">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- CSS Files
================================================== -->
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/jquery.countdown.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/color.css" type="text/css">
<link rel="stylesheet" href="css/colors/orange.css" type="text/css">
<link rel="stylesheet" href="css/colors/gradient-1.css" type="text/css">
<!-- background -->
<link rel="stylesheet" href="css/bg.css" type="text/css">
<!-- <script type="text/javascript" charset="UTF-8" src="/maps.googleapis.com/maps-api-v3/api/js/52/6/common.js"></script><script type="text/javascript" charset="UTF-8" src="/maps.googleapis.com/maps-api-v3/api/js/52/6/util.js"></script><script type="text/javascript" charset="UTF-8" src="/maps.googleapis.com/maps-api-v3/api/js/52/6/map.js"></script><script type="text/javascript" charset="UTF-8" src="/maps.googleapis.com/maps-api-v3/api/js/52/6/marker.js"></script><script type="text/javascript" charset="UTF-8" src="/maps.googleapis.com/maps-api-v3/api/js/52/6/onion.js"></script><script type="text/javascript" charset="UTF-8" src="/maps.googleapis.com/maps-api-v3/api/js/52/6/controls.js"></script></head> -->
<body id="homepage" class="de_light" style="display: block;">
<div id="wrapper" >
<!-- header begin -->
<header class="transparent scroll-light">
<div class="container" >
<div class="row" >
<div class="col-md-12" >
<!-- logo begin -->
<div id="logo">
<a href="/" style=" padding: 15px 0; display: flex;">
<img class="logo" src="./assets/logo-white.png" alt="" style="width: auto; height: 40px; margin: auto;">
<img class="logo-2" src="./assets/logo.png" alt="" style="width: auto; height: 40px; margin: auto;">
</a>
</div>
<!-- logo close -->
<!-- small button begin -->
<span id="menu-btn">
<i class="bi bi-list"></i>
</span>
<!-- small button close -->
<!-- mainmenu begin -->
<nav>
<ul id="mainmenu" class="line-separator">
<li><a class="active" href="#top">Home</a></li>
<li><a href="#section-about" class="">About</a></li>
<li><a href="#section-events">Events</a></li>
<li><a href="#section-speakers">Standup Night</a></li>
<li><a href="#section-schedules">Schedules</a></li>
<li><a href="#section-tickets">Tickets</a></li>
<!-- <li><a href="#section-register">Register</a></li> -->
<!-- <li><a href="#section-gallery">Gallery</a></li> -->
<!-- <li><a href="#section-sponsors">Sponsors</a></li> -->
</ul>
</nav>
</div>
<!-- mainmenu close -->
</div>
</div>
</header>
<!-- header close -->
<!-- content begin -->
<div id="content" class="no-bottom no-top" >
<div id="top" ></div>
<!-- section begin -->
<section id="section-intro" class="no-top no-bottom text-white" style=" background-position: 0% 0px;">
<div class="theColor" >
<div class="center-y relative" >
<div class="container" style=" min-height: 800px;;">
<div class="row" style=" display: flex; justify-content: center; align-items: center; height: 100%;">
<div class="col-md-6" style="text-align: center;">
<div class="spacer-half sm-hide" ></div>
<div class="spacer-double sm-hide" ></div>
<div class="big">
<img src="./assets/logo-white.png" alt="" style="width: auto; height: 150px; margin-bottom: 30px;">
</div>
<!-- <div class="big">
<img src="./assets/text.png" alt="" style="width: auto; height: 150px; margin-bottom: 30px;">
</div> -->
<h1 class="big">
TESSERACT 6.0
</h1>
<br>
<h3 style="margin: 0;">The Flagship Event of IEEE SB SJCET</h3>
<div class="spacer-single" ></div>
<div class="subtitle s2" >
<span><span class="btn-custom">April 28 and 29</span></span>
<a href="https://www.yepdesk.com/tesseract-6-0" class="btn-custom scroll-to">Get Tickets <i class="bi bi-chevron-right"></i></a>
</div>
</div>
<!-- <div class="col-md-6 text-center" >
<div class="inline-block md-float-right" >
<div class="spacer-single sm-hide" ></div>
<div class="spacer-double" ></div>
<div class="subtitle s3 mb20" >Event Begin In</div>
<div id="defaultCountdown" class="countdown-s1 is-countdown" >
<span class="countdown-row countdown-show3">
<span class="countdown-section">
<span class="countdown-amount">0</span>
<span class="countdown-period">Hours</span>
</span>
<span class="countdown-section">
<span class="countdown-amount">10</span>
<span class="countdown-period">Minutes</span>
</span>
<span class="countdown-section">
<span class="countdown-amount">0</span>
<span class="countdown-period">Seconds</span>
</span>
</span>
</div>
<div class="spacer-single" ></div>
<div class="clearfix" ></div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-about" >
<div class="container" >
<div class="row" >
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp animated" style="visibility: visible; animation-name: fadeInUp;">The Flagship Event of IEEE SB SJCET</h2>
<div class="small-border wow fadeInUp animated" data-wow-delay=".2s" style=" visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;"></div>
</div>
<div class="col-md-10 col-md-offset-1 text-center" style=" margin-bottom: 40px;">
<h4 class="lead wow fadeInUp animated " style="visibility: visible; animation-name: fadeInUp;">Tesseract is no less than a celebration for the IEEE SB SJCET since it's our annual flagship event. Tesseract provides an avenue for all the minds out there to meet, network, and find new opportunities. Enjoy these two days with fun workshops, a cultural night, and, of course, the food fiesta. </h4>
<div class="spacer-single" ></div>
</div>
<div class="col-md-4 text-center wow fadeInLeft animated" style=" visibility: visible; animation-name: fadeInLeft;">
<div class="padding20 sm-mb30" style="padding: 1rem; padding-top: 3rem; margin: .1rem; margin-top:1rem; background-color: #cccccc30;">
<i class="bi bi-person-check mb20 size70 theColorColor"></i>
<h3>Ask The Experts</h3>
<p>Interact with experts, and learn about the latest trends in your field. Get equipped with the necessary skills and march toward a bright career.</p>
</div>
</div>
<div class="col-md-4 text-center wow fadeInUp animated" style=" visibility: visible; animation-name: fadeInUp;">
<div class="padding20 sm-mb30" style="padding: 1rem; padding-top: 3rem; margin: .1rem; margin-top:1rem; background-color: #cccccc30;">
<i class="bi bi-newspaper mb20 size70 theColorColor"></i>
<h3>Latest Topics</h3>
<p>According to Moore, the number of transistors in an IC doubles about every two years. So you have got to learn new things every day. So take this as an opportunity.</p>
</div>
</div>
<div class="col-md-4 text-center wow fadeInRight animated" style=" visibility: visible; animation-name: fadeInRight;">
<div class="padding20 sm-mb30" style="padding: 1rem; padding-top: 3rem; margin: .1rem; margin-top:1rem; background-color: #cccccc30;">
<i class="bi bi-gear-fill mb20 size70 theColorColor"></i>
<br>
<h3>Workshops</h3><br>
<p>Find diversified workshops from tech to non- tech, trust us we have covered it all !!!</p>
<br>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-fun-facts" class="no-top no-bottom text-light" data-stellar-background-ratio=".2" style=" background-position: 0% 331.716px;">
<div class="theColor pt80 pb80" >
<div class="container" >
<div class="row" >
<div class="col-md-3 col-xs-6 wow fadeIn animated" style=" visibility: visible; animation-name: fadeIn;">
<div class="de_count sm-mb30" >
<h3 class="timer" data-to="200" data-speed="4000">200</h3>
<span>Seats</span>
</div>
</div>
<div class="col-md-3 col-xs-6 wow fadeIn animated" data-wow-delay=".2s" style=" visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;">
<div class="de_count sm-mb30" >
<h3 class="timer" data-to="2" data-speed="4000">2</h3>
<span>Days</span>
</div>
</div>
<div class="col-md-3 col-xs-6 wow fadeIn animated" data-wow-delay=".4s" style=" visibility: visible; animation-delay: 0.4s; animation-name: fadeIn;">
<div class="de_count sm-mb30" >
<h3 class="timer" data-to="12" data-speed="4000">12</h3>
<span>Speakers</span>
</div>
</div>
<div class="col-md-3 col-xs-6 wow fadeIn animated" data-wow-delay=".6s" style=" visibility: visible; animation-delay: 0.6s; animation-name: fadeIn;">
<div class="de_count sm-mb30" >
<h3 class="timer" data-to="5" data-speed="4000">5</h3>
<span>Doorprize</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-events">
<div class="container">
<div class="row">
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp" style="visibility: hidden; animation-name: none;">Workshops</h2>
<div class="small-border wow fadeInUp" data-wow-delay=".2s" style=" visibility: hidden; animation-delay: 0.2s; animation-name: none;"></div>
</div>
<div class="col-md-10 col-md-offset-1 text-center" >
<h4 class="lead wow fadeInUp animated " style="visibility: visible; animation-name: fadeInUp;">Get ready to rev up your engines, rock out to some sick beats, and unleash your inner self at TESSERACT 6.0 – the flagship event of IEEE SB SJCET and the hottest ticket in town! With three amazing tracks to choose from, you can dive into the world of all-terrain vehicles, jam out to the latest in sound engineering, or get your hustle on with the entrepreneurship workshop.</h4>
<div class="spacer-single" ></div>
</div>
<div class="row justify-content-center">
<div class="col-md-4">
<div class="eventcard">
<div class="inner">
<img class="card-img-top" src="assets/atvracing.jpg" alt="Card image cap">
</div>
<div class="card-body padding30">
<i class="bi bi-gear-fill fontsize36 mb20"></i>
<h3 class="card-title"><span class="text-white">Tyroveloce Racing</span></h3>
<p class="card-text halfWhite lead">Excited about automobiles and racing and every bit of it? Get a chance to learn from the best.
Guess what! You will be satisfied.</p>
<!-- <a class="price">
<span class="text-white padding30">more details <i class="bi bi-chevron-right"></i></span>
</a> -->
<br><br>
</div>
</div>
</div>
<div class="col-md-4">
<div class="eventcard">
<div class="inner">
<img class="card-img-top" src="assets/images.jpg" alt="Card image cap">
</div>
<div class="card-body padding30">
<i class="bi bi-person-video3 fontsize36 mb20"></i>
<h3 class="card-title"><span class="text-white">Entrepreneurship</span></h3>
<p class="card-text halfWhite lead">Well, it's entirely not about the Tank Show! But the baby steps you need to take to develop skills for what it takes to be a ___ You name it!!!</p>
<!-- <a class="price">
<span class="text-white padding30">more details <i class="bi bi-chevron-right"></i></span>
</a> -->
<br><br>
</div>
</div>
</div>
<div class="col-md-4">
<div class="eventcard">
<div class="inner">
<img class="card-img-top" src="assets/mixer.jpg" alt="Card image cap">
</div>
<div class="card-body padding30">
<i class="bi bi-music-note-list fontsize36 mb20"></i>
<h3 class="card-title"><span class="text-white">Musical Instruments and Sound Engineering</span></h3>
<p class="card-text halfWhite lead">Have you seen the video where Charlie Puth makes music using a cup and spoon?
Impressed and want to try it yourselves? Well, this is the right place, my friend.</p>
<!-- <a class="price">
<span class="text-white padding30">more details <i class="bi bi-chevron-right"></i></span>
</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-speakers">
<div class="container" >
<div class="row" >
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp animated" style="visibility: visible; animation-name: fadeInUp;">Standup Night</h2>
<div class="small-border wow fadeInUp animated" data-wow-delay=".2s" style=" visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;"></div>
</div>
<div class="col-md-10 col-md-offset-1 text-center" >
<h4 class="lead wow fadeInUp animated " style="visibility: visible; animation-name: fadeInUp;">But that's just the beginning of the fun! You'll also have a chance to hobnob with celebrities, laugh your socks off at our hilarious stand-up comedy and music night, and chow down on our mouth-watering live food experience. And did we mention that accommodation is included in the ticket price? You won't find a better deal this side of the equator.</h4>
<div class="spacer-single" ></div>
</div>
<div class="clearfix" ></div>
<div class="col-md-6 col-md-offset-3 wow fadeIn animated" style=" visibility: visible; animation-name: fadeIn;">
<div class="profile_pic text-center sm-mb30" >
<figure class="picframe s2 mb30">
<!-- <a class="simple-ajax-popup" href="team-details-1.html">
<span class="filter"></span>
</a> -->
<img src="/assets/standup.jpg" class="img-responsive" alt="">
</figure>
<div class="picframe" style="display: flex;flex-wrap: nowrap; justify-content: space-between;">
<a href="https://www.instagram.com/standupsabari/" class="">
<h3>Sabareesh Narayanan</h3>
<span class="subtitle">@standupsabari</span>
</a>
<a href="https://www.instagram.com/wander_monk/" class="">
<h3>Vishnu Mohan</h3>
<span class="subtitle">@wander_monk</span>
</a>
</div>
</div>
</div>
<!-- <div class="col-md-4 wow fadeIn animated" data-wow-delay=".2s" style=" visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;">
<div class="profile_pic text-center sm-mb30" >
<figure class="picframe s2 mb30">
<a class="simple-ajax-popup" href="team-details-2.html">
<span class="filter"></span>
</a>
<img src="./images/team/2.jpg" class="img-responsive" alt="">
</figure>
<h3>Vishnu Mohan</h3>
<span class="subtitle">@wander_monk</span>
</div>
</div> -->
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-schedules" class="no-top no-bottom text-light" data-stellar-background-ratio=".2" style=" background-position: 0% 538.009px;
">
<div class="overlay-gradient pt80 pb80" >
<div class="container" >
<div class="row" >
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp animated" style="visibility: visible; animation-name: fadeInUp;">Schedules</h2>
<div class="small-border wow fadeInUp" data-wow-delay=".2s" style=" visibility: hidden; animation-delay: 0.2s; animation-name: none;"></div>
</div>
<!-- <div class="col-md-6 col-md-offset-3 text-center" >
<p class="lead wow fadeInUp" style="visibility: hidden; animation-name: none;">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>
<div class="spacer-single" ></div> -->
</div>
<div class="col-md-10 col-md-offset-1 wow fadeInUp" style=" visibility: hidden; animation-name: none;">
<div class="de_tab tab_style_4 text-center" >
<ul class="de_nav">
<li class="active" data-link="#section-services-tab" style="width: calc(50%);">
<h3>Day <span>01</span></h3>
<h4>28 April, 2023</h4>
</li>
<li data-link="#section-services-tab" style="width: calc(50%);">
<h3>Day <span>02</span></h3>
<h4>29 April, 2023</h4>
</li>
</ul>
<div class="de_tab_content text-left" >
<div id="tab1" class="tab_single_content" style=" display: block;">
<div class="row" >
<div class="col-md-12" >
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >02:00 - 03:00 PM</div>
<div class="sc-info" >
<h3>Registration</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >03:00 - 03:30 PM</div>
<div class="sc-info" >
<h3>Inauguration</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >03:30 - 04:00 PM</div>
<div class="sc-info" >
<h3>Keynote Speech</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >04:00 - 04:15 PM</div>
<div class="sc-info" >
<h3>Tea Break</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >04:15 - 05:15 PM</div>
<div class="sc-info" >
<h3>Ice Breaking Session</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >05:15 - 06:15 PM</div>
<div class="sc-info" >
<h3>Games</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >06:30 - 07:30 PM</div>
<div class="sc-info" >
<h3>StandUp Comedy</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >07:30 - 08:00 PM</div>
<div class="sc-info" >
<h3>Music Band</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >08:00 - 08:45 PM</div>
<div class="sc-info" >
<h3>Live Food + Open Mic + Culturals</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >08:45 - 09:00 PM</div>
<div class="sc-info" >
<h3>To Accomodation</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
</div>
</div>
</div>
<div id="tab2" class="tab_single_content" style=" display: none;">
<div class="row" >
<div class="col-md-12" >
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >8:00 - 08:30 AM</div>
<div class="sc-info" >
<h3>Breakfast</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >08:30 - 10:30 AM</div>
<div class="sc-info" >
<h3>Workshops</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >10:30 - 10:45 AM</div>
<div class="sc-info" >
<h3>Tea Break</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >10:45 - 12:00 PM</div>
<div class="sc-info" >
<h3>Workshop Continues…</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >12:00 - 12:15 PM</div>
<div class="sc-info" >
<h3>Photo Session</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >12:15 - 01:00 PM</div>
<div class="sc-info" >
<h3>YP Track - About IEEE</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >01:00 - 02:00 PM</div>
<div class="sc-info" >
<h3>Lunch Break</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >02:00 - 03:00 PM</div>
<div class="sc-info" >
<h3>Mental Health Wellness Session</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
<div class="schedule-listing" >
<div class="schedule-item" >
<div class="sc-time" >03:00 - 04:00 PM</div>
<div class="sc-info" >
<h3>Closing Ceremony</h3>
</div>
<div class="clearfix" ></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-tickets" >
<div class="container" >
<div class="row" >
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp" style="visibility: hidden; animation-name: none;">Tickets</h2>
<div class="small-border wow fadeInUp" data-wow-delay=".2s" style=" visibility: hidden; animation-delay: 0.2s; animation-name: none;"></div>
</div>
<div class="col-md-12" >
<div class="item pricing" >
<div class="row" >
<div class="col-md-4 wow fadeIn" style=" visibility: hidden; animation-name: none;">
<div class="pricing-s1 bg-custom mb30" data-bgimage="url(./images/background/p1.jpg)" data-stellar-background-ratio=".2" style="background-image: url("./images/background/p1.jpg"); background-position: 0% -3064.81px;">
<div class="inner" >
<div class="ribbon">IEEE</div>
<div class="top" >
<h2>IEEE Members</h2>
<p class="price"><span class="currency">₹</span> <b>1099</b></p>
</div>
<div class="bottom" >
<ul>
<li><i class="bi bi-check-lg"></i>Sessions and Talks</li>
<li><i class="bi bi-check-lg"></i>Workshop Access</li>
<li><i class="bi bi-check-lg"></i>Food and accommodation</li>
<li><i class="bi bi-check-lg"></i>Networking Opportunity</li>
<li><i class="bi bi-check-lg"></i>Culturals </li>
<li><i class="bi bi-check-lg"></i>IEEE Membership Benefits </li>
</ul>
<a style="padding: 1rem 0;" href="https://www.yepdesk.com/tesseract-6-0" target="_blank" rel="noopener noreferrer" class="btn-border scroll-to">Get Tickets <i class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-4 wow fadeIn" data-wow-delay=".2s" style=" visibility: hidden; animation-delay: 0.2s; animation-name: none;">
<div class="pricing-s1 bg-custom mb30" data-bgimage="url(./images/background/p3.jpg)" data-stellar-background-ratio=".2" style="background-image: url("./images/background/p3.jpg"); background-position: 0% -3064.81px;">
<div class="inner" >
<!-- <div class="ribbon">EARLY BIRD</div> -->
<div class="top" >
<h2>Non-IEEE</h2>
<p class="price"><span class="currency">₹</span> <b>1299</b></p>
</div>
<div class="bottom" >
<ul>
<li><i class="bi bi-check-lg"></i>Sessions and Talks</li>
<li><i class="bi bi-check-lg"></i>Workshop Access</li>
<li><i class="bi bi-check-lg"></i>Food and accommodation</li>
<li><i class="bi bi-check-lg"></i>Networking Opportunity</li>
<li><i class="bi bi-check-lg"></i>Culturals </li>
<li class="blackColor"><i class="bi bi-x-lg"></i>IEEE Membership Benefits </li>
</ul>
<a style="padding: 1rem 0;" href="https://www.yepdesk.com/tesseract-6-0" target="_blank" rel="noopener noreferrer" class="btn-border scroll-to">Get Tickets <i class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-4 wow fadeIn" style=" visibility: hidden; animation-name: none;">
<div class="pricing-s1 bg-custom mb30" data-bgimage="url(./images/background/p1.jpg)" data-stellar-background-ratio=".2" style="background-image: url("./images/background/p1.jpg"); background-position: 0% -3064.81px;">
<div class="inner" >
<div class="ribbon">SJCET</div>
<div class="top" >
<h2>
IEEE SJCET Members</h2>
<p class="price"><span class="currency">₹</span> <b>999</b></p>
</div>
<div class="bottom" >
<ul>
<li><i class="bi bi-check-lg"></i>Sessions and Talks</li>
<li><i class="bi bi-check-lg"></i>Workshop Access</li>
<li><i class="bi bi-check-lg"></i>Food and accommodation</li>
<li><i class="bi bi-check-lg"></i>Networking Opportunity</li>
<li><i class="bi bi-check-lg"></i>Culturals </li>
<li><i class="bi bi-check-lg"></i>IEEE Membership Benefits </li>
</ul>
<a style="padding: 1rem 0;"
href="https://api.whatsapp.com/send?phone=919656642307&text=Hey%2C%0AThis%20message%20is%20regarding%20registration%20for%20Tesseract%206.0%20as%20an%20IEEE%20SJCET%20member."
target="_blank" rel="noopener noreferrer" class="btn-border scroll-to">Contact POC <i class="bi bi-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-10 col-md-offset-1 text-center" >
<h4 class="lead wow fadeInUp animated " style="visibility: visible; animation-name: fadeInUp;">So come join us for a tech-tastic, music-filled, entrepreneur-inspired extravaganza! TESSERACT 6.0 promises to be a life-changing experience – and we're not just saying that because we've had too much coffee (although that might be part of it). We guarantee that you'll leave our campus feeling smarter, happier, and with a full belly. Can't wait to see you there!</h4>
<div class="spacer-single" ></div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-register" class="no-top no-bottom text-light" data-stellar-background-ratio=".2" style=" background-position: 0% 896.519px; display: none;">
<div class="overlay-gradient pt80 pb80" >
<div class="container" >
<div class="row" >
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp" style="visibility: hidden; animation-name: none;">Register</h2>
<div class="small-border wow fadeInUp" data-wow-delay=".2s" style=" visibility: hidden; animation-delay: 0.2s; animation-name: none;"></div>
</div>
<div class="col-md-6 col-md-offset-3 text-center" >
<p class="lead wow fadeInUp" style="visibility: hidden; animation-name: none;">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.
</p>
<div class="spacer-single" ></div>
</div>
</div>
<div class="row" >
<div class="col-md-12 wow fadeInUp" style=" visibility: hidden; animation-name: none;">
<div class="row" >
<div class="col-md-12" >
<div id="register-with-map" class="bg-white" >
<form name="contactForm" id="contact_form" class="float-form padding60 pt40 form-s1" method="post" action="email.php">
<div class="field-set" >
<input type="text" name="name" id="name" class="form-control" placeholder="Your Name">
</div>
<div class="field-set" >
<input type="text" name="email" id="email" class="form-control" placeholder="Your Email">
</div>
<div class="field-set" >
<input type="text" name="phone" id="phone" class="form-control" placeholder="Phone">
</div>
<div class="field-set" >
<select id="ticket" name="ticket" size="1" class="form-control">
<option value="" disabled="" selected="">Select Type</option>
<option>Early Bird</option>
<option>Regular</option>
<option>Exclusive</option>
</select>
</div>
<div class="field-set" >
<textarea name="message" id="message" class="form-control" placeholder="Additional Message"></textarea>
</div>
<div class="spacer-half" ></div>
<div id="submit" >
<input type="submit" id="send_message" value="Submit Form" class="btn btn-custom color-2">
</div>
<div id="mail_success" class="success" >Your message has been sent successfully.</div>
<div id="mail_fail" class="error" >Sorry, error occured this time sending your message.</div>
</form>
<div class="clearfix" ></div>
</div>
</div>
</div>
</div>
</div>
<div class="spacer-double" ></div>
<div class="row text-center" >
<div class="col-md-4" >
<div class="wm-1" ></div>
<i class="icon-map id-color size40 mb20"></i>
<h5>Address</h5>
<h4>250 Hamilton Ave, Palo Alto, California</h4>
</div>
<div class="col-md-4" >
<div class="wm-1" ></div>
<i class="icon-phone id-color size40 mb20"></i>
<h5>Call Us</h5>
<h4>+1 650 329 2000</h4>
</div>
<div class="col-md-4" >
<div class="wm-1" ></div>
<i class="icon-envelope id-color size40 mb20"></i>
<h5>Email Us</h5>
<h4>[email protected]</h4>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-gallery" style=" display: none;">
<div class="container" >
<div class="row" >
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp" style="visibility: hidden; animation-name: none;">Gallery</h2>
<div class="small-border wow fadeInUp" data-wow-delay=".2s" style=" visibility: hidden; animation-delay: 0.2s; animation-name: none;"></div>
</div>
<div class="col-md-6 col-md-offset-3 text-center" >
<p class="lead wow fadeInUp" style="visibility: hidden; animation-name: none;">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>
<div class="spacer-single" ></div>
</div>
<div class="clearfix" ></div>
<div id="owl-gallery" class="owl-carousel wow fadeInUp owl-theme" style=" opacity: 1; display: block; visibility: hidden; animation-name: none;">
</div>
<div class="owl-controls clickable"><div class="owl-pagination"><div class="owl-page active"><span class=""></span></div><div class="owl-page"><span class=""></span></div></div></div></div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-sponsors" class="no-top no-bottom text-light" data-stellar-background-ratio=".2" style=" background-position: 0% 1262.43px; display: none;">
<div class="overlay-gradient pt80 pb80" >
<div class="container relative" >
<div class="row" >
<div class="row" >
<div class="col-md-12 text-center" >
<h2 class="wow fadeInUp" style="visibility: hidden; animation-name: none;">Sponsors</h2>
<div class="small-border wow fadeInUp" data-wow-delay=".2s" style=" visibility: hidden; animation-delay: 0.2s; animation-name: none;"></div>
<div class="spacer-single" ></div>
</div>
<div class="col-md-6 col-md-offset-3 text-center" >
<p class="lead wow fadeInUp" style="visibility: hidden; animation-name: none;">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>
</div>
<div class="col-md-12 text-center wow fadeInUp" style=" visibility: hidden; animation-name: none;">
<div class="owl-carousel owl-sponsors owl-theme" style=" opacity: 1; display: block;">
<div class="owl-wrapper-outer">
<div class="owl-wrapper" style="width: 3744px; left: 0px; display: block; transition: all 800ms ease 0s; transform: translate3d(-234px, 0px, 0px);">
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/1.png" alt=""></div></div>
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/2.png" alt=""></div></div>
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/3.png" alt=""></div></div>
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/4.png" alt=""></div></div>
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/5.png" alt=""></div></div>
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/6.png" alt=""></div></div>
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/7.png" alt=""></div></div>
<div class="owl-item" style="width: 234px;">
<div class="item" ><img src="./images/logo/8.png" alt=""></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
</div>
<!-- content close -->
<!-- footer begin -->
<footer>
<div class="container" >
<div class="row" >
<div class="col-md-6 sm-text-center sm-mb10" >
<div class="mt10" >© Copyright 2023 - <span class="theColor text-white" style="padding: 0 .8rem;">IEEE SB SJCET PALAI</span> </div>
</div>
<div class="col-md-6 text-right sm-text-center" >
<div class="social-icons" >
<a href="#"><i class="bi bi-facebook fa-lg"></i></a>
<a href="#"><i class="bi bi-twitter fa-lg"></i></a>
<a href="#"><i class="bi bi-linkedin fa-lg"></i></a>
<a href="#"><i class="bi bi-instagram fa-lg"></i></a>
</div>
</div>
</div>
</div>
</footer>
<!-- footer close -->
</div>
<!-- Javascript Files
================================================== -->
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/jquery.isotope.min.js"></script>
<script src="./js/easing.js"></script>
<script src="./js/owl.carousel.js"></script>
<script src="./js/jquery.countto.js"></script>
<script src="./js/wow.min.js"></script>
<script src="./js/jquery.magnific-popup.min.js"></script>
<script src="./js/enquire.min.js"></script>
<script src="./js/jquery.stellar.min.js"></script>
<script src="./js/jquery.plugin.js"></script>
<script src="./js/jquery.countdown.js"></script>
<script src="./js/countdown-custom.js"></script>
<script src="/maps.googleapis.com/maps/api/js?key=aizasyac5d1rs_0ywj1hyw2hgwfbrz9kkaxfazo.html"></script>
<script src="./js/map.js"></script>
<script src="./js/designesia.js"></script>
<script src="./js/validation.js"></script>
</body></html>