-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcourse_info.html
245 lines (194 loc) · 10 KB
/
course_info.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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to IEEE SIESGST</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<meta name="description" content="Official website of IEEE student chapter of SIES GST, Navi Mumbai.">
<meta name="keywords" content="IEEE, ieee, sies, gst, siesgst, official, student, website, home">
<meta name="author" content="IEEE SIES GST Student Chapter">
<!--whatsapp and fb-->
<meta property="og:title" content="IEEE SIES GST" />
<meta property="og:description" content="Official website of IEEE student chapter of SIES GST, Navi Mumbai." />
<meta property="og:url" content="https://ieeesiesgst.co.in" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://ieeesiesgst.co.in/images/ieeeicon.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="IEEE SIES GST" />
<!--twitter-->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="IEEE SIES GST" />
<meta property="twitter:description" content="Official website of IEEE student chapter of SIES GST, Navi Mumbai." />
<meta property="twitter:image" content="https://ieeesiesgst.co.in/images/ieeeicon.png" />
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#000">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#000">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#000">
<!-- //Meta tag Keywords -->
<!-- Bootstrap -->
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
<link rel="shortcut icon" href="images/favicon.png">
<link rel="icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<script type="text/javascript">
function menu(){
let x = document.getElementById("navbar");
if(x.style.maxHeight == '60px' || x.style.maxHeight == '' || x.style.height == '60px'){
x.style.maxHeight = " 1000px";
document.getElementById('bar1').style.transform = 'rotate(-45deg) translate(-3px,7px)';
document.getElementById('bar3').style.transform = 'rotate(45deg) translate(-3px,-7px)';
document.getElementById('bar2').style.opacity = '0';
document.getElementById('notnav').style.display = 'block';
setTimeout(function() {
x.style.transition = '';
x.style.transition = '0.5s cubic-bezier(0, 1, 0, 1)';
}, 500);
}
else
{
x.style.maxHeight = "60px";
document.getElementById('bar1').style.transform = 'rotate(0deg) translate(0px,0px)';
document.getElementById('bar3').style.transform = 'rotate(0deg) translate(0px,0px)';
document.getElementById('bar2').style.opacity = '1';
document.getElementById('notnav').style.display = 'none';
setTimeout(function() {
x.style.transition = '';
x.style.transition = '1s ease-in;';
}, 500);
}
}
function navchange() {
if(window.innerWidth > 850 && window.scrollY > 2)
{
document.getElementById('nav-logo-image').style.marginTop = '13px';
document.getElementById('nav-logo-image').style.height = '44px';
document.getElementById('navbar-ul').style.marginTop = '20px';
document.getElementById('navbar').style.height = '70px';
}
else if(window.innerWidth > 850 && window.scrollY <= 2)
{
document.getElementById('nav-logo-image').style.marginTop = '17px';
document.getElementById('nav-logo-image').style.height = '50px';
document.getElementById('navbar-ul').style.marginTop = '29px';
document.getElementById('navbar').style.height = '83px';
}
else
{
document.getElementById('nav-logo-image').style.marginTop = '10px';
document.getElementById('nav-logo-image').style.height = '40px';
document.getElementById('navbar-ul').style.marginTop = '60px';
document.getElementById('navbar').style.height = 'auto';
}
}
</script>
</head>
<body>
<nav class="position-fixed topnav" id="navbar">
<div class="nav-logo position-absolute">
<a href="#"><img src="images/IEEE SIESGST_Certificate Logo Vector.png" class="nav-logo-img" id="nav-logo-image" alt=""></a>
</div>
<div class="toggle-bars position-absolute" onclick="menu();">
<div class="bar-1 bar" id="bar1"></div>
<div class="bar-2 bar" id="bar2"></div>
<div class="bar-3 bar" id="bar3"></div>
</div>
<ul class="navbar-ul mb-0" id="navbar-ul">
<a href="#" class="navbar-link">
<li class="navbar-list active"><div class="navbar-link-text d-inline">Home</div></li>
</a>
<a href="#" class="navbar-link">
<li class="navbar-list"><div class="navbar-link-text d-inline">About Us</div></li>
</a>
<a href="#" class="navbar-link">
<li class="navbar-list"><div class="navbar-link-text d-inline">Courses</div></li>
</a>
<a href="#" class="navbar-link">
<li><div class="navbar-link-text d-inline vl"></div></li>
</a>
<a href="#" class="navbar-link">
<li><div class="navbar-link-text d-inline">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRTnzkDj_OvBuG3d4sueuTlFpYsJffnFhHHXA&usqp=CAU"
class="rounded-circle">Mr.Andre Martinez</div>
</li>
</a>
</ul>
</nav>
<header class="jumbotron CourseHead">
<div class="container">
<div class="row row-header">
<div class="col-12 col-sm-7 col-md-6 col-xl-5 col-l-5 ">
<card class="card CourseCard">
<div class="card-body"><img id="CourseImage" src="images/Mobile_bg.jpg"></div>
</card>
</div>
<div class="col-12 col-sm-5 col-md-6 col-xl-7 col-l-7 content">
<h1 id="CourseName">Control Systems</h1>
<h3 id="Author">By someone</h3>
<br class="d-none d-sm-block">
<button class="btn btn-warning" id="enrollbtn"><strong>Enroll Now</strong></button>
</div>
</div>
</div>
</header>
<br>
<br>
<div id="notnav" class="position-fixed h-100 w-100" onclick="menu();"></div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<h6 class="text-center text-white pt-4"><b>FOLLOW US ON</b></h6>
<div class="row Footericons justify-content-center">
<a href="#"><i class="footer-icons fab fa-linkedin mr-3"></i></a>
<a href="#"><i class="footer-icons fab fa-youtube mr-3"></i></a>
<a href="#"><i class="footer-icons fab fa-instagram mr-3"></i></a>
<a href="#"><i class="footer-icons fab fa-facebook mr-3"></i></a>
<a href="#"><i class="footer-icons fab fa-github mr-3"></i></a>
</div>
<div class="text-center pt-3 pb-1"><small class="text-white">© Copyrights 2020</small></div>
</div>
<!-- Code by Mrunal -->
</footer>
<!-- //Footer -->
<script>
window.onresize = function() {
let x = document.getElementById("navbar");
navchange();
if(window.innerWidth > 850)
{
x.style.maxHeight = "1000px";
document.getElementById('bar1').style.transform = 'rotate(0deg) translate(0px,0px)';
document.getElementById('bar3').style.transform = 'rotate(0deg) translate(0px,0px)';
document.getElementById('bar2').style.opacity = '1';
document.getElementById('notnav').style.display = 'none';
}
else
{
x.style.maxHeight = "60px";
document.getElementById('bar1').style.transform = 'rotate(0deg) translate(0px,0px)';
document.getElementById('bar3').style.transform = 'rotate(0deg) translate(0px,0px)';
document.getElementById('bar2').style.opacity = '1';
document.getElementById('notnav').style.display = 'none';
}
};
window.onscroll = function() {
navchange();
}
</script>
</body>
</html>