-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
393 lines (370 loc) · 13.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Techathlon 21: Inderprastha Engineering College</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="icon" href="./images/MainLogo.png" size="10x10">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/responsive.css">
</head>
<body>
<!--
preloader
-->
<div id="preloader">
<svg class="preloader" xmlns="http://www.w3.org/2000/svg" version="1.1" width="600" height="200">
<defs>
<filter id="goo" x="-40%" y="-40%" height="200%" width="400%">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -8" result="goo" />
</filter>
</defs>
<g filter="url(#goo)">
<circle class="dot" cx="50" cy="50" r="25" fill="#8d81ac" />
<circle class="dot" cx="50" cy="50" r="25" fill="#8d81ac" />
</g>
</svg>
<div class="preloader-text">
Techathlon '21
</div>
</div>
<!-- End of Preloader -->
<header>
<nav>
<div class="logo">
<!-- techathalon on navbar -->
<img src="./images/ipec.png" />
</div>
<ul class="nav-links">
<li class="cross"><a href="#">X</a></li>
<div class="links">
<!-- links in nav bar as well as in drawer -->
<li><a href="/index">Home</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#advisoryCommittee">Advisory Commmittee</a></li>
<li><a href="/hackathon">Hackathon</a></li>
<li><a href="/innovazia">Innovazia</a></li>
<li><a href="#quickLinks">Quick links</a></li>
</div>
</ul>
<!-- hamburger button designing -->
<div class="bars" style="margin: 0px 40px;">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<!-- -->
</nav>
<div id="hero-text" class="title">
<div class="more-pens">
<div class="logo-landing">
<img src="./images/MainLogo.png" height="185px" alt="" srcset="" data-aos="fade-up" data-aos-delay="500">
</div>
<p data-aos="fade-up" data-aos-delay="600">Inderprastha Engineering College</p>
<p class="hero-small" data-aos="fade-up" data-aos-delay="700">Department of Computer Science & Engineering <br>
and </p>
<p class="hero-small" data-aos="fade-up" data-aos-delay="700">Department of Information Technology</p>
<p class="hero-small" data-aos="fade-up" data-aos-delay="750">
jointly presents
</p>
<h1 data-aos="fade-up" data-aos-delay="800">Techathlon '21</h1>
<!--<p class="hero-small" data-aos="fade-up" data-aos-delay="500">Yes it is Finally here. <br> Scroll Down to know
more.</p> -->
<div class="spacer"></div>
<a href="#content">
<div id="scroll"></div>
</a>
</div>
</div>
</header>
<div id="content">
<section class="info">
<p data-aos="fade-up" data-aos-delay="100">What is Techathlon '21?</p>
<p style="text-align: justify;" data-aos="fade-up" data-aos-delay="500">
Techathlon, an event organized by IPEC (Inderprastha Engineering College,Ghaziabad). It is a code sprint-like
event in which computer programmers and others involve in software development, including graphic designers,
interface designers, project managers and others, often comprises of
subject-matter-experts, collaborate intensively on software projects. It aims to ‘Inspiring Young Minds’,
participants are encouraged to answer the given problem statements and if they do, they have the option to get
their project judged with the possibility of moving on to the Tech World.
</p>
<div style="margin-top: 1.2rem; font-size:1.5rem">
<strong style="text-align: center;" data-aos="fade-up" data-aos-delay="300">
It is divided into <span style="color:#D51E36">Two</span> major events
</strong>
</div>
</section>
</div>
<div id="events">
<div class="container">
<div class="split left">
<h1 data-aos="fade-up" data-aos-delay="100">Hackathon</h1>
<a href="/hackathon" class="">
<button class="btn-readMore">Learn More</button>
</a>
</div>
<div class="split right">
<h1 data-aos="fade-up" data-aos-delay="100">Innovazia</h1>
<a href="/innovazia" class="">
<button class="btn-readMore">Learn More</button>
</a>
</div>
</div>
</div>
<div id="advisoryCommittee">
<p class="section-title" data-aos="fade-up" data-aos-delay="100">
Advisory Committee
</p>
<div class="card-container" style="margin-top: 5%;" data-aos="fade-up" data-aos-delay="300">
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Dr. Ajay Kumar</h2>
<div class="jop">Director, IPEC</div>
</div>
</div>
</div>
<div class="card-container" data-aos="fade-up" data-aos-delay="300">
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Ms. Monika Bansal</h2>
<div class="jop">Registrar, IPEC</div>
</div>
</div>
</div>
<div class="card-container" data-aos="fade-up" data-aos-delay="300">
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Dr. Vijai Singh</h2>
<div class="jop">HOD, CSE</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Dr. Pooja Tripathi</h2>
<div class="jop">HOD, IT</div>
</div>
</div>
</div>
<div class="card-container" data-aos="fade-up" data-aos-delay="300">
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Dr. Diksha Dani</h2>
<div class="jop">Convener, Techathlon</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Mr. Pranshu Saxena</h2>
<div class="jop">Convener, Hackathon</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Ms. Sneh Prabha</h2>
<div class="jop">Co-Convener, Hackathon</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Ms. Bindu Rani</h2>
<div class="jop">Co-Convener, Hackathon</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Ms. Abhilasha Vashney</h2>
<div class="jop">Co-Convener, Hackathon</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Dr. Lalit Rathi</h2>
<div class="jop">Co-Convener, Hackathon</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Mr. Ajay Chauhan</h2>
<div class="jop">Co-Convener, Hackathon</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Dr. Tripti Sharma</h2>
<div class="jop">Convener, Innovazia</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Ms. Chahat Sharma</h2>
<div class="jop">Co-Convener, Innovazia</div>
</div>
</div>
<div class="box" id="box_1">
<div class="front">
<div class="profile_photo p1"></div>
<h2 class="full_name">Ms. Kumud Alok</h2>
<div class="jop">Co-Convener, Innovazia</div>
</div>
</div>
</div>
</div>
<!--------------------------------------Advisory End Here----------------------------------->
<div id="sponsors">
<p class="section-title" style="text-align: center;">
Sponsors
</p>
<div class="sponsorsImg" style="text-align: center;" >
<img src="./images/netcamp.png" alt="">
<img src="./images/GFG.jpeg" alt="">
</div>
<div style="text-align: center;">
<a href="mailto:[email protected]" target="_blank">
<button class="btn-register">
Be a Sponsor
</button>
</a>
</div>
</div>
<!----------------- our Team ----------------------------------------------------------------->
<div id="ourTeam">
<p class="section-title" data-aos="fade-up" data-aos-delay="200">
Our Team
</p>
<div class="team-container" data-aos="fade-up" data-aos-delay="200">
<div class="card darth">
<div class="face front" style="background-image: url('./images/ankur.jpg');">
<h2><small>Ankur</small><br />Kanaujia</h2>
<cite>
<a href="https://wa.me/+917007948347" target="_blank">Connect on Whats app</a>
</cite>
</div>
</div>
<div class="card darth">
<div class="face front" style="background-image: url('./images/Anjali.jpg')">
<h2><small>Anjali</small><br />Jangid</h2>
<cite>
<a href="https://wa.me/+919810190186" target="_blank">Connect on Whats app</a>
</cite>
</div>
</div>
<div class="card darth">
<div class="face front" style="background-image: url('./images/Apoorv.jpg')">
<h2><small>Apoorv</small><br />Kudesia</h2>
<cite>
<a href="https://wa.me/+919634080457" target="_blank">Connect on Whats app</a>
</cite>
</div>
</div>
</div>
</div>
<!-- our Team end here -->
<!-- MODALS -->
<div id="open-modal" class="modal-window">
<div>
<a href="#" title="Close" class="modal-close">X</a>
<h1>Registration links</h1>
<div class="buttons">
<a href="https://registration.techathlonipec.tech/vividly" target="_blank"> <button
class="pulse">Vividly</button></a>
<a href="https://registration.techathlonipec.tech/infomaze" target="_blank"><button
class="raise">Infomaze</button></a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<script src="./js/main.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
(function ($) {
$(window).on('load', function () {
if ($("#preloader").length > 0) {
setTimeout(function () {
$("#preloader").fadeOut("slow");
}, 2000);
}
});
})(jQuery)
</script>
</body>
<!-- ------------Footer---------------------------->
<footer style="background: #f2ebd8;">
<div class="section1">
<!-- flex containers start here -->
<div class="container-one" style="color: black;">
<h3>Locate Us</h3>
<p style="color: black;">
63 Site IV, Sahibabad
<br>
Industrial Area,
<br>
Surya Nagar Flyover Road
<br>
Sahibabad, Ghaziabad-U.P
<br>
PIN Code-201010
<br>
<br>
Ph: +91(120) 4535000,
<br>
2895135,136,137
</p>
</div>
<div class="container-two" id="quickLinks">
<h3 style="color: black;">Quick links</h3>
<ul>
<li><a href="./documents/Code of Conduct.pdf">
<p style="color: black;">Code of Conduct</p>
</a></li>
<li><a href="./documents/Regulations of Events.pdf">
<p style="color: black;">Regulations of Event</p>
</a></li>
<li><a href="./documents/Rules.pdf">
<p style="color: black;">Rules</p>
</a></li>
<li><a href="./documents/Newsletter.pdf">
<p style="color: black;">Newsletter (CSE)</p>
</a></li>
</ul>
</div>
<div class="container-three">
<h3 style="color: black;">Connect With Us</h3>
<ul>
<li><a href="http://instagram.com/ipectechathlon"> <img src="./images/instagram.png" alt="instagram"
class="icon-img" /></a></li>
<li><a href="http://facebook.com/ipectechathlon"> <img src="./images/facebook.png" alt="facebook"
class="icon-img" /> </a></li>
<li><a href="mailto:[email protected]"> <img src="./images/mail.png" alt="email" class="icon-img" /> </a>
</li>
</ul>
<a href="#">
<div class="topper">
<span class="bkt">Back To Top <span><img src="/images/up-arrow.png" alt="arrowup" class="arrow"></span></span>
</div>
</a>
</div>
</div>
<!-- flex containers end here -->
</footer>
</html>