-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
538 lines (469 loc) · 23.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Event Scheduler</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,400,700,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="css/jquery.timepicker.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
</head>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).ready(function() {
var maxLength = 50;
$(".show-read-more").each(function() {
var myStr = $(this).text();
if ($.trim(myStr).length > maxLength) {
var newStr = myStr.substring(0, maxLength);
var removedStr = myStr.substring(maxLength, $.trim(myStr).length);
$(this).empty().html(newStr);
$(this).append(' <a href="javascript:void(0);" class="read-more">read more...</a>');
$(this).append('<span class="more-text">' + removedStr + '</span>');
}
});
$(".read-more").click(function() {
$(this).siblings(".more-text").contents().unwrap();
$(this).remove();
});
});
</script>
<style type="text/css">
.mini-footer {
background: #ffffff;
text-align: center;
padding: 32px 0
}
.mini-footer p a:hover {
color: #34bfa3
}
@media (max-width:991px) {
.footer-menu {
padding-left: 0;
}
.page-container h3{
margin-top: 100px;
}
.colorlib-navbar-brand img{
transform: scale(3);
margin-left: 50px;
}
.copyright-text {
margin-right: -50px;
margin-left: -25px;
}
}
.sidenav {
width: 130px;
position: fixed;
z-index: 1;
top: 20px;
left: 10px;
background: #eee;
overflow-x: hidden;
padding: 8px 0;
}
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #2196F3;
display: inline-block;
}
.sidenav a:hover {
color: #064579;
}
.main {
margin-left: 140px;
/* Same width as the sidebar + left position in px */
font-size: 28px;
/* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {
padding-top: 15px;
}
.sidenav a {
font-size: 18px;
}
}
.show-read-more .more-text {
display: none;
}
.clamp {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical
}
.social-buttons {
display: inline-block;
background: rgba(255, 255, 255, 0.5);
padding: 20px;
padding-bottom: 5px;
border-radius: 10px;
text-align: center;
margin: 20px 10px;
/* Helper class to divide the icons */
}
.social-buttons .social-margin {
margin-right: 15px;
}
.social-buttons a,
.social-buttons a:hover,
.social-buttons a:focus,
.social-buttons a:active {
text-decoration: none;
}
.social-buttons .social-icon {
margin-bottom: 15px;
box-sizing: border-box;
-moz-border-radius: 138px;
-webkit-border-radius: 138px;
border-radius: 138px;
border: 5px solid;
text-align: center;
width: 50px;
height: 50px;
display: inline-block;
line-height: 1px;
padding-top: 11px;
transition: all 0.5s;
/* Facebook Button Styling */
/* Twitter Button Styling */
/* Google+ Button Styling */
/* Linkedin Button Styling */
/* Pinterest Button Styling */
/* Behance Button Styling */
/* Github Button Styling */
/* Youtube Button Styling */
/* Soundcloud Button Styling */
}
.social-buttons .social-icon:hover {
transform: rotate(360deg) scale(1.3);
}
.social-buttons .social-icon.facebook {
font-size: 22px;
padding-top: 9px;
border-color: #3b5998;
background-color: #3b5998;
color: #ffffff;
}
.social-buttons .social-icon.facebook:hover {
background-color: #ffffff;
color: #3b5998;
}
.social-buttons .social-icon.linkedin {
font-size: 24px;
padding-top: 8px;
padding-left: 1px;
background-color: #0976b4;
color: #ffffff;
border-color: #0976b4;
}
.social-buttons .social-icon.linkedin:hover {
background-color: #ffffff;
color: #0976b4;
}
.social-buttons .social-icon.instagram {
font-size: 22px;
padding-top: 9px;
background-color: #cb2027;
color: #ffffff;
border-color: #cb2027;
}
.social-buttons .social-icon.instagram:hover {
background-color: #ffffff;
color: #cb2027;
}
.social-buttons .social-icon.medium {
font-size: 22px;
padding-top: 9px;
background-color: #cb2027;
color: #ffffff;
border-color: #cb2027;
}
.social-buttons .social-icon.medium:hover {
background-color: #ffffff;
color: #cb2027;
}
</style>
<body>
<nav id="colorlib-main-nav" role="navigation">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle active"><i></i></a>
<div class="js-fullheight colorlib-table">
<div class="colorlib-table-cell js-fullheight">
<div class="row d-flex justify-content-end">
<div class="col-md-12 px-5">
<ul class="mb-5">
<li class="active"><a href="index.html"><span>Home</span></a></li>
<li><a href="about2.html"><span>About</span></a></li>
<li><a href="contact.html"><span>Contact US</span></a></li>
</ul>
</div>
<div class="col px-5 copyright">
<p>Powered By IEEE Student Branch</p>
</div>
</div>
</div>
</div>
</nav>
<div id="colorlib-page">
<header>
<div class="container-fluid">
<div class="row no-gutters">
<div class="col-md-12">
<div class="colorlib-navbar-brand">
<img src="logoiee2.png" class="img-fluid" alt="Responsive image" style="width:14%;" class="w3-round"><br><br>
</div>
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle"><i></i></a>
</div>
</div>
</div>
</header>
<section class="ftco-fixed clearfix">
<div class="image js-fullheight float-left">
<div class="home-slider owl-carousel js-fullheight">
<div class="slider-item js-fullheight" style="background-image: url('images/bg_1.jpg');">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-end" data-scrollax-parent="true">
<div class="col-md-10 col-sm-12 ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<p class="cat"><span>IEEE Student Branch</span></p>
<h1 class="mb-3" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }"></h1>
</div>
</div>
</div>
</div>
<div class="slider-item js-fullheight" style="background-image: url('images/bg_2.jpg');">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-end" data-scrollax-parent="true">
<div class="col-md-10 col-sm-12 ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<p class="cat"><span></span></p>
<h1 class="mb-3" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }"></h1>
</div>
</div>
</div>
</div>
<div class="slider-item js-fullheight" style="background-image: url('images/bg_3.jpg');">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-end" data-scrollax-parent="true">
<div class="col-md-10 col-sm-12 ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<p class="cat"><span></span></p>
<h1 class="mb-3" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }"></h1>
</div>
</div>
</div>
</div>
<div class="slider-item js-fullheight" style="background-image: url('images/bg_4.jpg');">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-end" data-scrollax-parent="true">
<div class="col-md-10 col-sm-12 ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<p class="cat"><span></span></p>
<h1 class="mb-3" data-scrollax="properties: { translateY: '30%', opacity: 1.6 }"></h1>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page-container float-right">
<h3>Upcoming Events</h3><br>
<div class="row">
<div class="col-md-6">
<div class="blog-entry ftco-animate">
<a href="cloud.html" class="blog-image">
<img src="images/cloud.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">July 29, 2018</a></div>
<div><a href="#">Seminar Hall</a></div>
</div>
<h3 class="heading"><a href="#">Microsoft Cloud Workshop</a></h3>
<p>Microsoft Cloud Workshop (MCW) is a hands-on community development experience.</p>
</div>
</div>
<div class="blog-entry ftco-animate">
<a href="cyber.html" class="blog-image">
<img src="images/cyber.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">Aug 9, 2020</a></div>
<div><a href="#">Vedanta 202</a></div>
</div>
<h3 class="heading"><a href="#">Cyberdome</a></h3>
<p>Cyberdome is workshop which focus on basic of Sercuity with hands on experiments.</p>
</div>
</div>
<div class="blog-entry ftco-animate">
<a href="iot.html" class="blog-image">
<img src="images/iot.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">Aug 29, 2018</a></div>
<div><a href="#">Civil Block</a></div>
</div>
<h3 class="heading"><a href="#">Seminar on IOT</a></h3>
<p class="show-read-more">The Internet of things (IoT) is a system of interrelated computing devices, mechanical and digital machines provided with unique identifiers (UIDs) and the ability to transfer data over a network without requiring human-to-human
or human-to-computer interaction.</p>
</div>
</div>
<div class="blog-entry ftco-animate">
<a href="linux.html" class="blog-image">
<img src="images/linux.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">September 3, 2020</a></div>
<div><a href="#">Vedanta 305</a></div>
</div>
<h3 class="heading"><a href="#">Linux Bootcamp</a></h3>
<p class="show-read-more">The Linux System Administrator bootcamp provides a thorough introduction to UNIX and Linux fundamentals as well as essential administration skills required to competently maintain a Linux system in a networked business
environment.
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="blog-entry ftco-animate">
<a href="webdev.html" class="blog-image">
<img src="images/web.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">September 29, 2020</a></div>
<div><a href="#">Civil Block</a></div>
</div>
<h3 class="heading"><a href="#">Seminar on Web Development</a></h3>
<p class="show-read-more">Web development refers to building, creating, and an maintaining websites. It includes aspects such as web design, web publishing, web programming, and database management.</p>
</div>
</div>
<div class="blog-entry ftco-animate">
<a href="robo.html" class="blog-image">
<img src="images/robo.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">October 9, 2020</a></div>
<div><a href="#">Vedanta</a></div>
</div>
<h3 class="heading"><a href="#">Robotics</a></h3>
<p class="show-read-more">Robotics is an interdisciplinary research area at the interface of computer science and engineering. Robotics involves design, construction, operation, and use of robots. The goal of robotics is to design intelligent machines
that can help.</p>
</div>
</div>
<div class="blog-entry ftco-animate">
<a href="ai.html" class="blog-image">
<img src="images/ai.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">October 21, 2020</a></div>
<div><a href="#">Online</a></div>
</div>
<h3 class="heading"><a href="#">Webinar On AI&ML</a></h3>
<p>The goal is to learn from data on certain task to maximize the performance of machine on this task. AI is decision making. ML allows system to learn new things from data.</p>
</div>
</div>
<div class="blog-entry ftco-animate">
<a href="blockchain.html" class="blog-image">
<img src="images/blockchain.jpg" class="img-fluid" alt="">
</a>
<div class="text py-4">
<div class="meta">
<div><a href="#">Nov 15, 2020</a></div>
<div><a href="#">Online</a></div>
</div>
<h3 class="heading"><a href="#">Blockchain Webinar</a></h3>
<p class="show-read-more">A blockchain,originally block chain, is a growing list of records, called blocks, that are linked using cryptography.Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data (generally
represented as a Merkle tree).</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-32 w3-indigo">
<div class="w3-row-padding" align="center">
<footer class="footer-area footer--light">
<div class="social-buttons">
<div class="mini-footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="copyright-text">
<!-- facebook Button -->
<a href="https://www.facebook.com/ieeeditu/" target="blank" class="social-margin">
<div class="social-icon facebook">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
</a>
<!-- instagram Button -->
<a href="https://www.instagram.com/ieeeditu/?hl=en" target="blank" class="social-margin">
<div class="social-icon instagram">
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
</a>
<!-- LinkedIn Button -->
<a href="https://www.linkedin.com/company/ieeeditu" class="social-margin" target="blank">
<div class="social-icon linkedin">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</div>
</a>
<!-- mediumButton -->
<a href="https://medium.com/ieeeditu" target="blank" class="social-margin">
<div class="social-icon twitter">
<i class="fa fa-medium" aria-hidden="true"></i>
</div>
</a>
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end: page-container-->
</section>
<!-- loader -->
<div id="ftco-loader" class="show fullscreen">
<svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.animateNumber.min.js"></script>
<script src="js/scrollax.min.js"></script>
<script src="js/bootstrap-datepicker.js"></script>
<script src="js/jquery.timepicker.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
<script src="js/google-map.js"></script>
<script src="js/main.js"></script>
</body>
</html>