-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
625 lines (586 loc) · 23.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<style>
body {
background: #190415;
}
#ring-container {
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
background: #190415;
display: flex;
justify-content: center;
align-items: center;
z-index: 999;
}
#ring {
position: relative;
width: 150px;
height: 150px;
background: #190415;
border: 3px solid #3c3c3c;
border-radius: 50%;
text-align: center;
line-height: 150px;
font-family: sans-serif;
font-size: 20px;
color: #ff9a92;
letter-spacing: 4px;
text-transform: uppercase;
text-shadow: 0 0 10px #ff9a92;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
z-index: 100;
}
#ring:before {
content: "";
position: absolute;
top: -3px;
left: -3px;
width: 104%;
height: 104%;
border: 3px solid transparent;
border-top: 3px solid #ff9a92;
border-right: 3px solid #ff9a92;
border-radius: 50%;
animation: animateC 2s linear infinite;
z-index: 100;
}
span {
display: block;
position: absolute;
top: calc(50% - 2px);
left: 50%;
width: 50%;
height: 4px;
background: transparent;
transform-origin: left;
animation: animate 2s linear infinite;
z-index: 100;
}
span:before {
content: "";
position: absolute;
width: 16px;
height: 16px;
border-radius: 50%;
background: #ff9a92;
top: -6px;
right: -8px;
box-shadow: 0 0 20px #ff9a92;
}
@keyframes animateC {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate {
0% {
transform: rotate(45deg);
}
100% {
transform: rotate(405deg);
}
}
@media only screen and (min-width: 850px) and (max-width: 1195px) {
.speaker-odd-heading {
font-size: 25px;
}
}
</style>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./assets/daksha-icon.webp" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<link rel="stylesheet" href="./styles/styles.css?v=1.2" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<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=Rubik:wght@400;800;700;600;900&display=swap" rel="stylesheet" />
<title>Daksha 2.0</title>
</head>
<body id="body">
<div id="ring-container">
<div id="ring">
<span></span>
</div>
</div>
<!-- header -->
<header>
<nav class="navbar fixed-top navbar-expand-lg" id="navbar">
<div class="container-fluid" id="container">
<img src="./assets/ieee_sb_cec_logo_white.png" class="navbar-brand" id="sb-icon" />
<img src="./assets/wie logo-WHITE.png" class="navbar-brand" id="wie" />
<button class="navbar-toggler fa fa-bars" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation"></button>
<div class="collapse navbar-collapse justify-content-center navi" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#inauguration">Inauguration</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#tracks">Events</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#Group-Discussion">Group Discussion</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#Pre-Event">Pre-Events</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#contact">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- parallax -->
<section class="parallax">
<img src="assets/homepage_layer_cloud1.webp" id="Cloud-1" alt="" />
<img src="assets/homepage_layer_cloud2.webp" id="Cloud-2" alt="" />
<img src="assets/homepage_layer_sun.webp" id="Sun" alt="" />
<img src="assets/layer3-2.webp" id="Layer-4" />
<img src="assets/layer2-mob.webp" id="Layer3-2" alt="" />
<img src="assets/layer2.webp" id="Layer-3" />
<img src="assets/layer1.webp" id="Layer-2" />
<!-- <img src="assets/homepage_layer1.svg" id="Layer-1"> -->
<img src="assets/daksha name.svg" alt="" id="Logo" />
</section>
<section class="register" id="reg-btn">
<a href="https://www.yepdesk.com/daksha2" role="button" class="btn btn-link">REGISTER NOW</a>
</section>
<section class="countdown">
<p id="demo"></p>
<div class="Days">
<p id="day">0</p>
<p class="text">D A Y S</p>
</div>
<div class="Hours">
<p id="hour">0</p>
<p class="text">H O U R S</p>
</div>
<div class="Min">
<p id="min">0</p>
<p class="text">M I N U T E S</p>
</div>
<div class="Sec">
<p id="sec">0</p>
<p class="text">S E C O N D S</p>
</div>
</section>
<!-- about -->
<section id="about">
<div class="about-section wrapper">
<div class="container p-lg-2 px-5">
<div class="row align-items-center">
<div class="col-lg-3 col-md-12 mb-lg-0 mb-3 mx-auto">
<div class="card border-0 text-sec">
<h2 id="daksha-title">What is Daksha?</h2>
</div>
</div>
<div class="col-lg-7 col-md-12 text-sec mx-auto">
<p class="desc">
Daksha is a two-day all kerala technical event powered by IEEE
Women In Engineering Affinity Group, College of Engineering
Chengannur. The event, being a Technical Colloquium for both
girls and boys, focuses on escalating their technical expertise
and enabling networking and socializing with fellow participants
from various engineering colleges across Kerala. The program
looks forward to building a trailblazing platform for the
student leaders to interact across regions to share their
knowledge, find their best applications, cultivate different
ideas and much more.
</p>
</div>
</div>
</div>
</div>
<div class="container p-lg-2 px-5">
<div class="row pt-3 gy-6">
<div class="col-lg-4 col-sm-12 col-12 col-md-3 mx-auto">
<div class="program text-center h-100">
<i class="fa fa-laptop"></i>
<h3>WORKSHOPS</h3>
<p class="pg-desc">
Implementing these strategies can lead to increased student
engagement in technical and managerial competitions, thereby
elevating their creative abilities.
</p>
</div>
</div>
<div class="col-lg-4 col-sm-12 col-12 col-md-3 mx-auto">
<div class="program text-center h-100">
<i class="fa fa-microphone"></i>
<h3>NON-TECHNICAL SESSIONS</h3>
<p class="pg-desc">
Sessions encompassing interpersonal skills and broader aspects
of professional development.
</p>
</div>
</div>
<div class="col-lg-4 col-sm-12 col-12 col-md-3 mx-auto">
<div class="program text-center h-100">
<i class="fa fa-users"></i>
<h3>GROUP DISCUSSIONS</h3>
<p class="pg-desc">
Participants will be grouped into smaller teams for a discussion
format akin to placement scenarios. Outstanding performers will
have the opportunity to participate in subsequent online mock
interviews.
</p>
</div>
</div>
</div>
<div class="row pt-3 gy-6 justify-content-center">
<div class="col-lg-4 col-sm-12 col-12 col-md-3">
<div class="program text-center h-100">
<i class="fa fa-suitcase"></i>
<h3>INTERNSHIP OPPORTUNITIES</h3>
<p class="pg-desc">
Exclusive Internship Opportunity for Top-Performing Students!
</p>
</div>
</div>
<div class="col-lg-4 col-sm-12 col-12 col-md-3">
<div class="program text-center h-100">
<i class="fa fa-headphones"></i>
<h3>CULTURAL ACTIVITIES</h3>
<p class="pg-desc">
The event's first day concludes with a delightful campfire,
featuring live music and a diverse array of other
cultural programs.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="inauguration" id="inauguration">
<h2 class=" standard-heading-style">Inauguration</h2>
<div class="inaug">
<div class="in-cont" data-aos="fade-up" data-aos-duration="1000">
<div class="in-photo" data-aos="fade-up" data-aos-duration="1000"></div>
<div class="in-det">
<h5 data-aos="fade-right" data-aos-duration="1000">Dr.Bijuna Kunju</h5>
<p data-aos="fade-left" data-aos-duration="1000">Chairperson<br>IEEE WIE Kerala Section</p>
</div>
</div>
</div>
</section>
<!-- tracks -->
<section id="tracks">
<div class="tracks-container">
<div class="tracks-top-section">
<h1 class="standard-heading-style">Tracks</h1>
</div>
<div class="tracks-timeline">
<div class="tracks-line"></div>
<div class="tracks-section">
<div class="tracks-inner-container">
<div class="tracks-bead"></div>
<div class="tracks-content">
<h2 class="tracks-h2">Network design</h2>
<p>
Imagine a Network Design Workshop as your network's secret
weapon, where innovation, practicality, and user-focused magic
merge. It's not just a workshop; it's your golden ticket to
outshine the competition, making your network's growth and
success skyrocket.In this electrifying workshop, we'll dive
into the art of crafting networks that don't just work – they
shine. We'll unleash the creative genius within, blending
visionary ideas with boots-on-the-ground feasibility. It's
your chance to lead the pack, as we reveal the secrets of
transforming imaginative network concepts into real-world
phenomena. Don't just compete; captivate the market!
</p>
<div class="tracks-image-container">
<img src="./assets/Safad_Ismail.webp" alt="" id="tracks-conductor-1" />
<h3 class="tracks-conductor-details" id="speaker-1-details">
Asst.Professor<br />
Saintgits Engineering College<br />
Mtech,LLB.<br />
</h3>
<h3 class="tracks-conductor-name speaker-odd-heading">SAFAD ISMAIL</h3>
</div>
</div>
</div>
</div>
<div class="tracks-section">
<div class="tracks-inner-container">
<div class="tracks-bead tracks-bead-odd"></div>
<div class="tracks-content tracks-content-odd">
<h2 class="tracks-h2">Digital Twin</h2>
<ul>
<li>
Eager to dive into the cutting-edge realm of Digital Twins?
</li>
<li>
Uncertain about where to commence this transformative
journey?
</li>
</ul>
<p>
Digital twins, a groundbreaking technology, breathe life into
virtual replicas of real-world objects or systems. They wield
immense power for monitoring, analysis, simulation, and
optimization. This workshop becomes your gateway to mastering
the art of Digital Twins. Plus, for the winners of the
hackathon, exciting internship opportunities await, making
this workshop your gateway to mastering the art of Digital
Twins and empowering individuals to harness
their full potential.
</p>
<div class="tracks-image-container">
<img src="./assets/Akhil.png" alt="" id="tracks-conductor-1" />
<h3 class="tracks-conductor-details">
Lead Unity Developer<br />
XR Horizon<br />
</h3>
<h3 class="tracks-conductor-name">Akhil M Mani</h3>
</div>
</div>
</div>
</div>
<div class="tracks-section">
<div class="tracks-inner-container">
<div class="tracks-bead"></div>
<div class="tracks-content">
<h2 class="tracks-h2">Dialux</h2>
<p>
Dive into the illuminating world of Dialux, where light meets
innovation. Dialux, a powerful lighting design software,
illuminates spaces with creativity and precision. It's not
just about lighting; it's about transforming spaces into
captivating experiences. Our Dialux workshop isn't merely a
practical; it's your secret weapon to stand out in the field,
enhancing your skills and directly impacting your career's
growth and success. This workshop is your beacon to understand
the intricacies of Dialux and its real-world applications.
It's not just about theory; it's hands-on, allowing you to
craft and visualize lighting designs that leave a lasting
impression. Unlock the potential of Dialux, and who knows,
your newfound expertise might just light up your career with
exciting opportunities, making you a true
luminary in the field.
</p>
<div class="tracks-image-container">
<img src="./assets/Track 3 (2).png" alt="" id="tracks-conductor-1">
<h3 class="tracks-conductor-details">Electrical Engineer<br />Lighting Enthusiast</h3>
<h3 class="tracks-conductor-name speaker-odd-heading">Stalon Jessin</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Speakers -->
<section id="Speakers">
<h1 class="standard-heading-style">Speakers</h1>
<div class="Speakers-container">
<div class="Speakers-card" data-aos="fade-right" data-aos-duration="2000">
<div class="Speakers-image-container">
<div class="Speakers-bg-container">
<img src="./assets/speakers_pattern-min.png" alt="" id="Speakers-bg-pattern1">
</div>
<img src="./assets/speaker_1.webp" alt="" class="Speakers-image">
</div>
<div class="Speakers-info">
<p class="Speakers-name">Darshana Sudarsann</p>
<p>Actress <br></p>
</div>
</div>
<div class="Speakers-card" data-aos="fade-left" data-aos-duration="2000">
<div class="Speakers-image-container">
<div class="Speakers-bg-container">
<img src="./assets/speakers_pattern-min.png" alt="" id="Speakers-bg-pattern2">
</div>
<img src="./assets/speaker_2.webp" alt="" class="Speakers-image">
</div>
<div class="Speakers-info">
<p class="Speakers-name" id="Speaker-2-heading">Dr Ishha Farha Quraishy</p>
<p>Ms Universe Solidarity<br> CEO and Founder IFQ Tech</p>
</div>
</div>
</div>
</section>
<!-- Group Discussion -->
<section id="Group-Discussion">
<h1 class="standard-heading-style">Group Discussion</h1>
<p class="GD-content">In collaboration with IEEE Young Professionals</p>
<div class="group-discussion-container">
<div class="GD-card" data-aos="fade-left" data-aos-duration="1000">
<div class="GD-img-container">
<img src="./assets/Dilber P Shakir.png" alt="" class="GD-img">
</div>
<p class="GD-nametag">Dilber P Shakir</p>
</div>
<div class="GD-card" data-aos="fade-left" data-aos-duration="1000">
<div class="GD-img-container">
<img src="./assets/Aparna S L.png" alt="" class="GD-img">
</div>
<p class="GD-nametag">Aparna S L</p>
</div>
<div class="GD-card" data-aos="fade-left" data-aos-duration="1000">
<div class="GD-img-container">
<img src="./assets/Govind S Nath.png" alt="" class="GD-img">
</div>
<p class="GD-nametag">Govind S Nath</p>
</div>
</div>
<div class="group-discussion-container">
<div class="GD-card" data-aos="fade-left" data-aos-duration="1000">
<div class="GD-img-container">
<img src="./assets/Akshara Bruno.png" alt="" class="GD-img">
</div>
<p class="GD-nametag">Akshara Bruno</p>
</div>
<div class="GD-card" data-aos="fade-left" data-aos-duration="1000">
<div class="GD-img-container">
<img src="./assets/Aravind P Unnithan.png" alt="" class="GD-img">
</div>
<p class="GD-nametag">Aravind P Unnithan</p>
</div>
<div class="GD-card" data-aos="fade-left" data-aos-duration="1000">
<div class="GD-img-container">
<img src="./assets/Janaki Devi R.png" alt="" class="GD-img">
</div>
<p class="GD-nametag">Janaki Devi R</p>
</div>
</div>
</section>
<!-- PreEvent -->
<section class="Pre-Event" id="Pre-Event">
<h1 class="standard-heading-style">Pre-Event</h1>
<div class="PE-main-container">
<div class="PE-content-container" data-aos="fade-up" data-aos-duration="1000">
<h1>Leading Youth To New Horizons</h1>
<div class="PE-sub-content-container">
<img src="./assets/Preevent.png" alt="" class="PE-img">
<p>
A talk session on the topic Leading Youth to New Horizons by Dr.Meena D, Scientist G, LRDE, DRDO, PFA
Bangalore.
Dr.Meena D is currently working as a senior Scientist and leading various Photonics technology based
development
activities at Radar Development Establishment (LRDE), Bangalore. Received awards both at lab level and
national level.
She has multiple granted, filed patents and multiple copy rights to her credit and published more than 75
papers both at
national & international levels. She is a senior member of IEEE Photonics Society & HKN of IEEE.
</p>
</div>
</div>
</div>
</section>
<section id="Partner">
<div class="Partner-container">
<h1 id="Partner-heading" class="standard-heading-style">
Internship Partner
</h1>
<img src="./assets/XR Horizon Logo white.png" alt="" id="Partner-logo" />
<img src="./assets/XR Horizon Logo.png" alt="" id="Partner-logo-col" />
</div>
</section>
<section id="Sponsor">
<div class="Sponsor-container">
<h1 id="Sponsor-heading" class="standard-heading-style">
Our Sponsor
</h1>
<img src="./assets/Dan.webp" alt="" id="Sponsor-logo">
<p id="Sponsor-details">
India's first online LLB entrance institute.
</p>
</div>
</section>
<section id="contact">
<div class="contact wrapper">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="text-content text-center">
<h2 class="standard-heading-style">Contact Us</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3 class="neonText">Phone Number</h3>
<p style="color: white; font-size: 110%; font-weight: 700">
Gouri M Menon - 9995903238
</p>
<p style="color: white; font-size: 110%; font-weight: 700">
Vrindha Vinod - 7561833641
</p>
</div>
<div class="col-md-6">
<h3 class="neonText">Email</h3>
<div class="mail">
<p style="color: white; font-size: 110%; font-weight: 700">
<a href="mailto:%[email protected]">[email protected]</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="footer-wrap">
<footer>
<div class="waves">
<div class="wave" id="wave1"></div>
<div class="wave" id="wave2"></div>
<div class="wave" id="wave3"></div>
<div class="wave" id="wave4"></div>
</div>
<ul class="social-icons">
<li>
<a href="https://www.instagram.com/ieee_sb_cec/"><i class="fa fa-instagram"></i></a>
<a href="https://cecieee.org/"><i class="fa fa-google"></i></a>
<a href="https://www.linkedin.com/company/cecieee/"><i class="fa fa-linkedin"></i></a>
<a href="mailto:%[email protected]"><i class="fa fa-envelope"></i></a>
</li>
</ul>
<img src="./assets/daksha name2.svg" alt="logo" width="100px" height="28px" />
<p>Copyright© <b>DAKSHA</b></p>
</footer>
</div>
<script>
$(window).on("load", function () {
$(".ring-container").fadeOut("slow");
});
</script>
<script src="./js/index.js?v=1.2"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>