-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
518 lines (454 loc) · 26.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
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
<!DOCTYPE html>
<html class="no-js">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" type="image/png" href="images/favicon.png">
<title>IEEE LNMIIT SB</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Template CSS Files
================================================== -->
<!-- Twitter Bootstrs CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Ionicons Fonts Css -->
<link rel="stylesheet" href="css/ionicons.min.css">
<!-- animate css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Hero area slider css-->
<link rel="stylesheet" href="css/slider.css">
<!-- owl craousel css -->
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<!-- template main css file -->
<link rel="stylesheet" href="css/main.css">
<!-- responsive css -->
<link rel="stylesheet" href="css/responsive.css">
<!-- font-awesome -->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- symentic ui -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css">
<!-- Template Javascript Files
================================================== -->
<!-- modernizr js -->
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
<!-- jquery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<!-- owl carouserl js -->
<script src="js/owl.carousel.min.js"></script>
<!-- bootstrap js -->
<script src="js/bootstrap.min.js"></script>
<!-- wow js -->
<script src="js/wow.min.js"></script>
<!-- slider js -->
<script src="js/slider.js"></script>
<script src="js/jquery.fancybox.js"></script>
<!-- template main js -->
<script src="js/main.js"></script>
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 500, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">var scrolltotop={setting:{startline:100,scrollto:0,scrollduration:1e3,fadeduration:[500,100]},controlHTML:'<img src="https://i1155.photobucket.com/albums/p559/scrolltotop/arrow200.png" />',controlattrs:{offsetx:5,offsety:5},anchorkeyword:"#top",state:{isvisible:!1,shouldvisible:!1},scrollup:function(){this.cssfixedsupport||this.$control.css({opacity:0});var t=isNaN(this.setting.scrollto)?this.setting.scrollto:parseInt(this.setting.scrollto);t="string"==typeof t&&1==jQuery("#"+t).length?jQuery("#"+t).offset().top:0,this.$body.animate({scrollTop:t},this.setting.scrollduration)},keepfixed:function(){var t=jQuery(window),o=t.scrollLeft()+t.width()-this.$control.width()-this.controlattrs.offsetx,s=t.scrollTop()+t.height()-this.$control.height()-this.controlattrs.offsety;this.$control.css({left:o+"px",top:s+"px"})},togglecontrol:function(){var t=jQuery(window).scrollTop();this.cssfixedsupport||this.keepfixed(),this.state.shouldvisible=t>=this.setting.startline?!0:!1,this.state.shouldvisible&&!this.state.isvisible?(this.$control.stop().animate({opacity:1},this.setting.fadeduration[0]),this.state.isvisible=!0):0==this.state.shouldvisible&&this.state.isvisible&&(this.$control.stop().animate({opacity:0},this.setting.fadeduration[1]),this.state.isvisible=!1)},init:function(){jQuery(document).ready(function(t){var o=scrolltotop,s=document.all;o.cssfixedsupport=!s||s&&"CSS1Compat"==document.compatMode&&window.XMLHttpRequest,o.$body=t(window.opera?"CSS1Compat"==document.compatMode?"html":"body":"html,body"),o.$control=t('<div id="topcontrol">'+o.controlHTML+"</div>").css({position:o.cssfixedsupport?"fixed":"absolute",bottom:o.controlattrs.offsety,right:o.controlattrs.offsetx,opacity:0,cursor:"pointer"}).attr({title:"Scroll to Top"}).click(function(){return o.scrollup(),!1}).appendTo("body"),document.all&&!window.XMLHttpRequest&&""!=o.$control.text()&&o.$control.css({width:o.$control.width()}),o.togglecontrol(),t('a[href="'+o.anchorkeyword+'"]').click(function(){return o.scrollup(),!1}),t(window).bind("scroll resize",function(t){o.togglecontrol()})})}};scrolltotop.init();
jQuery(document).ready(function($){
if (localStorage.getItem('advertOnce') !== 'true') {
$('body').append('<div id="advert-once" style="position:fixed; bottom: 10px; left: 10px;"><a href="https://www.scrolltotop.com/guide-on-how-to-make-a-website.php" target="_blank" rel="nofollow"><img src="https://i1155.photobucket.com/albums/p559/scrolltotop/makewebsite.png" width="87" height="52" border="0" alt="make a website" /></a><div class="advert-button"></div></div>')
localStorage.setItem('advertOnce','true');
}
$('#advert-once .advert-button').on('click',function(){
$('#advert-once').hide();
});
});
</script>
</head>
<body>
<!--
==================================================
Header Section Start
================================================== -->
<header id="top-bar" class="navbar-fixed-top animated-header">
<div class="container">
<div class="navbar-header">
<!-- responsive nav button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- /responsive nav button -->
<!-- logo -->
<div class="navbar-brand">
<a href="index.html" >
<img src="images/logo.png" alt="">
</a>
</div>
<!-- /logo -->
</div>
<!-- main menu -->
<nav class="collapse navbar-collapse navbar-right" role="navigation">
<div class="main-menu">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="index.html" >Home</a>
</li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="team.html">Team</a></li>
<li><a class="scroll-link" href="#call-to-action">Contact</a></li>
</ul>
</div>
</nav>
<!-- /main nav -->
<style>
.fixed-top-2 {
margin-top: 9px;
margin-bottom: 0px;
}
body {
padding-top: 84px;
}
</style>
</div>
</header>
<nav class="navbar navbar-toggleable-sm bg-inverse navbar-inverse fixed-top fixed-top-2">
<a href="http://www.ieee.org/?WT.mc_id=mn_ieee" class="navbar-brand">IEEE.org</a>
<a href="http://ieeexplore.ieee.org/" class="navbar-brand">IEEE Xplore Digital Library</a>
<a href="http://standards.ieee.org/" class="navbar-brand">IEEE Standards</a>
<a href="http://spectrum.ieee.org/" class="navbar-brand">IEEE Spectrum</a>
<a href="http://www.ieee.org/sitemap.html?WT.mc_id=mn_smap" class="navbar-brand">More Sites</a>
</nav>
<!--
==================================================
Slider Section Start
================================================== -->
<section id="hero-area" >
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="block wow fadeInUp" data-wow-delay=".3s">
<!-- Slider -->
<section class="cd-intro">
<h1 class="wow fadeInUp animated cd-headline slide" data-wow-delay=".4s" >
<span>WELCOME TO IEEE STUDENT BRANCH</span><br>
<span class="cd-words-wrapper">
<b class="is-visible">THE LNMIIT, JAIPUR</b>
</span>
</h1>
</section> <!-- cd-intro -->
<!-- /.slider -->
<h2 class="wow fadeInUp animated" data-wow-delay=".6s" >
We are a combined association of faculty members along with the enthusiastic students of our college, The LNMIIT Jaipur. We strive for creating technology for the people and people for technology. </h2>
<a class="btn btn-outline-dark" data-wow-delay=".9s" href="#works" data-section="#works" >View Works</a>
</div>
</div>
</div>
</div>
</section><!--/#main-slider-->
<!--
==================================================
Slider Section Start
================================================== -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="block wow fadeInLeft" data-wow-delay=".3s" data-wow-duration="500ms">
<h2>
ABOUT US
</h2>
<p style="text-align:justify;">
Institute of Electrical and Electronics Engineers is a not-for-profit organization recognised globally as IEEE formed in 1963. We at LNMIIT have our own student branch which is an amalgamation of faculty members and enthusiastic students of our college to develop technologies for people and for a better future. </p>
<p style="text-align:justify;">
<p>
Institute of Electrical and Electronics Engineers is a not-for-profit organization recognised globally as IEEE formed in 1963. We at LNMIIT have our own student branch which is an amalgamation of faculty members and enthusiastic students of our college to develop technologies for people and for a better future. </p>
<p>
IEEE's core purpose is to foster technological innovation and excellence for the benefit of humanity. The Student branch activities offer numerous educational, technical, and professional opportunities through various events, talks and workshops to enhance the skill set of students. </p>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="block wow fadeInRight" data-wow-delay=".3s" data-wow-duration="500ms">
<img src="images/about/about.jpg" alt="" align="right" height="300" width="300"
</div>
</div>
</div>
</div>
</section> <!-- /#about -->
<!--
==================================================
Portfolio Section Start
================================================== -->
<section id="works" class="works">
<div class="container">
<div class="section-heading">
<h1 class="title wow fadeInDown" data-wow-delay=".3s">Latest Works</h1>
<p class="wow fadeInDown" data-wow-delay=".5s">
Following are some of the insights to our student branch.
</p>
</div>
<div class="row">
<div class="col-sm-4 col-xs-12">
<figure class="wow fadeInLeft animated portfolio-item" data-wow-duration="500ms" data-wow-delay="0ms">
<div class="img-wrapper">
<a href="events.html#talks"> <img src="images/portfolio/item-1.jpg" class="img-responsive" alt="this is a title" ></a>
<div class="overlay">
<div class="buttons">
</div>
</div>
</div>
<figcaption>
<h4>
<a href="events.html">
TALKS
</a>
</h4>
</figcaption>
</figure>
</div>
<div class="col-sm-4 col-xs-12">
<figure class="wow fadeInLeft animated portfolio-item" data-wow-duration="500ms" data-wow-delay="0ms">
<div class="img-wrapper">
<a href="events.html#workshops"> <img src="images/portfolio/item-2.jpg" class="img-responsive" alt="this is a title" ></a>
<div class="overlay">
<div class="buttons">
</div>
</div>
</div>
<figcaption>
<h4>
<a href="events.html">
WORKSHOPS
</a>
</h4>
</figcaption>
</figure>
</div>
<div class="col-sm-4 col-xs-12">
<figure class="wow fadeInLeft animated portfolio-item" data-wow-duration="500ms" data-wow-delay="0ms">
<div class="img-wrapper">
<a href="events.html#quiz"> <img src="images/portfolio/item-3.jpg" class="img-responsive" alt="this is a title" ></a>
<div class="overlay">
<div class="buttons">
</div>
</div>
</div>
<figcaption>
<h4>
<a href="events.html">
QUIZ
</a>
</h4>
</figcaption>
</figure>
</div>
</div>
</div>
</section> <!-- #works -->
<div class="container">
<div class="row" id="report">
<div class="text-center">
<h2 class="title fadeInDown"><a href="report.pdf">View the IEEE Report</a></h2>
</div>
</div>
</div>
<div class="container">
<div class="row" id="report">
<div class="text-center">
<h2 class="title fadeInDown"><a href="certificate.pdf">View the Darrel Chong Award Certificate</a></h2>
</div>
</div>
</div>
<!--
==================================================
Portfolio Section Start
================================================== -->
<section id="events-page" class="pages events-page">
<div class="container">
<div class="row">
<div class="block">
<h2 class="subtitle wow fadeInUp animated" data-wow-delay=".3s" data-wow-duration="500ms">What We Love To Do</h2>
<p style="text-align:justify;" class="subtitle-des wow fadeInUp animated" data-wow-delay=".5s" data-wow-duration="500ms">There has been a lot of events, workshops, talks and conferences and seminars oraganised by the student branch. This year we are organising the annual AISYWC event.</p>
<div class="row events-parts">
<div class="col-md-3">
<div class="block wow fadeInUp animated" data-wow-duration="400ms" data-wow-delay="600ms">
<i class="ion-ios-paper"></i>
<h4>WORKSHOPS</h4>
<p style="text-align:justify;">The IEEE SB regularly organises workshop related to machine learning, augmented reality and also for students that are new to community.</p>
</div>
</div>
<div class="col-md-3">
<div class="block wow fadeInUp animated" data-wow-duration="400ms" data-wow-delay="800ms">
<i class="ion-ios-pint"></i>
<h4>DEBATES</h4>
<p style="text-align:justify;">Healthy discussions is what we acknowledge the most and encourage huge participation during such events.</p>
</div>
</div>
<div class="col-md-3">
<div class="block wow fadeInUp animated" data-wow-duration="400ms" data-wow-delay="1s">
<i class="ion-ios-paper"></i>
<h4>QUIZ</h4>
<p style="text-align:justify;">We organise different type of quiz events with collaboration of quiz clubs of our college and other interested sponsors.</p>
</div>
</div>
<div class="col-md-3">
<div class="block wow fadeInUp animated" data-wow-duration="400ms" data-wow-delay="1.1s">
<i class="ion-ios-paper"></i>
<h4>INFORMATIVE TOURS</h4>
<p style="text-align:justify;">The IEEE SB often travel to informative centers and to places full of new technologies in order to update students about it and help them learn in process. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section> <!-- /#feature -->
<!--
==================================================
Call To Action Section Start
================================================== -->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h2 class="title wow fadeInDown" data-wow-delay=".3s" data-wow-duration="500ms">HOW TO JOIN? ?</h1>
<p class="wow fadeInDown" data-wow-delay=".5s" data-wow-duration="500ms">We heartily welcome to our student branch and we wish to bring technologies for people by merging together as one. We would also love to address your queries and suggestion, click down the button to contact us.</p>
<a href="contact.html" class="btn btn-default btn-contact wow fadeInDown" data-wow-delay=".7s" data-wow-duration="500ms">Contact Us</a>
</div>
</div>
</div>
</div>
</section>
<!--
==================================================
Footer Section Start
================================================== -->
<footer id="footer">
<section>
<div class="container">
<div class="row row-custom bg-footer-light color-eee">
<div class="container padding-vertical-50">
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 footer-center margin-bottom-20">
<h3><span class="border-bottom-primary">Reach Us</span></h3>
<br>
<address>
<i class="fa fa-location-arrow fa-fw"></i> IEEE student branch,LNMIIT<br><br>
<i class="fa fa-envelope fa-fw"></i> [email protected]<br><br>
<i class="fa fa-phone fa-fw"></i> 0141-5189211
</address>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 footer-center margin-bottom-20">
<h3><span class="border-bottom-primary">Land on our Facebook page!</span></h3>
<br>
<iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FIEEE.LNMIIT%2F&tabs=timeline&width=300px&height=130px&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=false&appId" width="300px" height="150px" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allow="encrypted-media"></iframe>
</div>
<div class="col-lg-5 col-md-4 col-sm-6 col-xs-12 footer-center margin-bottom-20">
<h3><span class="border-bottom-primary">Locate Us!</span></h3>
<br>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3556.9643042291764!2d75.92133461499846!3d26.936346083117392!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x396dba21e8a1d1c9%3A0x5ab565cce4d44c2b!2sThe+LNM+Institute+of+Information+Technology!5e0!3m2!1sen!2sin!4v1554816306857!5m2!1sen!2sin" width="300px" height="130px" frameborder="0" style="border:0" allowfullscreen></iframe>
<br>
</div>
</div>
</div>
</div>
<section>
</footer> <!-- /#footer -->
<!-- small back to top button at right -->
<!-- <a id="navb" href="#top-bar"></a>
<style type="text/css">
html {
scroll-behavior: smooth;
}
#navb {
display: none;
background-color: #333;
width: 50px;
height: 50px;
text-align: center;
border-radius: 4px;
margin: 30px;
position: fixed;
bottom: 30px;
right: 30px;
transition: background-color .3s,opacity .5s, visibility .5s;
z-index: 1000;
opacity: 50;
}
#navb:hover
{
cursor: pointer;
background-color: #696969;
}
#navb:active
{
background-color: #555;
}
#navb::after
{
content: "\f077";
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
font-size: 2em;
line-height: 50px;
color: #fff;
}
</style> -->
<script>
jQuery(document).ready(function() {
var btn = $('#navb');
$(window).scroll(function()
{
if ($(window).scrollTop() > 300)
{
btn.fadeIn();
}
else
{
btn.fadeOut();
}
});
btn.on('click', function(e) {
e.preventDefault();
$('html, body').animate({scrollTop:0}, '300');
return false;
});
});
</script>
</body>
</html>