-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
110 lines (93 loc) · 4.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IEEE Students Branch SJCET</title>
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i,800&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="./assets/styles/styles.css">
<link rel="stylesheet" href="./assets/styles/default_nav.css">
<link rel="stylesheet" href="./assets/styles/bootstrap.min.css">
<link rel="stylesheet" href="./assets/styles/owl.carousel.min.css">
</head>
<!-- Cookie Banner -->
<script src="https://s3-us-west-2.amazonaws.com/ieeeshutpages/gdpr/settings.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise(json)
});
</script>
<body>
<section class="home">
<!-- Default IEEE Header -->
<div class="meta-nav">
<p id="ieee-meta-a"><a href="https://www.ieee.org/index.html">IEEE.org</a>  |  <a href="https://www.ieeexplore.ieee.org/Xplore/guesthome.jsp">IEEE <em>Xplore</em> Digital Library</a>  |  <a href="https://standards.ieee.org/">IEEE Standards</a>  |  <a href="https://spectrum.ieee.org/">IEEE Spectrum</a>  |  <a href="https://www.ieee.org/sitemap.html">More Sites</a><a href="https://ieee.org"><img class="meta-ieee-logo" src="https://www.ieee.org/content/dam/ieee-global/images/ieee_mb_white.png" alt="IEEE.org" width="auto" height="20" /></a></p>
</div>
<div class="nav-wrapper">
<nav class="nav-bar">
<div class="nav-brand">
<a href="#"><img src="./assets/images/sblogo.png" alt="IEEE SB SJCET LOGO"></a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav"></div>
<ul class="nav-list">
<li><a href="">Home</a></li>
<li><a href="">Home</a></li>
<li><a href="">Home</a></li>
</ul>
</nav>
</div>
<!-- Slider text -->
<div class="owl-carousel owl-theme">
<div class="item">
<img src="./assets/images/slide-1.JPG" alt="">
<div class="slider-content">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure nisi, quo tempora, tenetur itaque vel magnam, excepturi quibusdam laborum consequuntur ad. Omnis voluptatem impedit, sed numquam iure adipisci quidem harum!
</div>
</div>
<div class="item">
<img src="./assets/images/slide-2.JPG" alt="">
<div class="slider-content">
test
</div>
</div>
<div class="item">
<img src="./assets/images/slide-3.JPG" alt="">
<div class="slider-content">
test
</div>
</div>
</div>
</section>
<section class="te"></section>
<section class="ho"></section>
<section class="h"></section>
<!-- Scripts -->
<script src="./assets/scripts/jquery.js"></script>
<script src="./assets/scripts/bootstrap.min.js"></script>
<script src="./assets/scripts/owl.carousel.min.js"></script>
<script src="./assets/scripts/app.js"></script>
<script>
$('.owl-carousel').owlCarousel({
loop:true,
margin:10,
nav:true,
// autoplay:true,
margin:0,
autoplayTimeout:2500,
autoplayHoverPause:false,
responsive:{
0:{
items:1
},
}
})
</script>
</body>
</html>