-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
202 lines (182 loc) · 9.08 KB
/
about.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
<!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.0">
<title>About Us</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
integrity="sha512-PgQMlq+nqFLV4ylk1gwUOgm6CtIIXkKwaIHp/PAIWHzig/lKZSEGKEysh0TCVbHJXCLN7WetD8TFecIky75ZfQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</head>
<body onload="slider()">
<div class="about_banner">
<div class="about_slider">
<img src="./images/nitj.png" alt="" id="slider_img_about">
</div>
<div class="overlay">
<div class="navbar-section">
<div class="logo">
<a href=""><img src="./images/logo.png" alt=""></a>
</div>
<div class="menu_links">
<i class="fas fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="index.html/#new_event">EVENTS</a></li>
<li><a href="placements.html">PLACEMENTS</a></li>
<li><a href="spice gallery.html">GALLERY</a></li>
<li><a href="team.html">TEAM</a></li>
</ul>
</div>
<i class="fas fa-bars" onclick="showMenu()"></i>
</div>
<h1 class="about">About Us</h1>
</div>
</div>
<!------------------------ About us section -------------------->
<section class="about_us">
<div class="row2">
<div class="about_col column2 mt-4">
<h1>SPICE SOCIETY</h1>
<span>Lets Make Tech Spicy</span>
<p>
Society for Progression of Instrumentation and Control
Engineering <b>(SPICE)</b> is a society which was established in the department
of Instrumentation and Control Engineering (ICE), Dr. B. R. Ambedkar National Institute
of Technology, Jalandhar formed on December 1, 1994.
</p>
<p>The society is continuously
working for the welfare of students of Instrumentation and Control Engineering. A number
of events have been organized under this society such as expert lectures from industry,
workshops on <b>robotics, career guidance & industrial tours</b>.
</p>
</div>
<div class="about_col">
<!-- <img src="images/slider3.webp" alt="about us"> -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="images/slider.webp" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/slider2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/slider3.webp" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!----------------------------- Mision -------------------------->
<section id="Mission">
<div class=" mt-5 mb-5 bg">
<div class="row justify-content-center">
<div class="col-lg-5 col-md-6 col-sm-12">
<h2 class="heading_vision">
OUR VISION And <br>MISSION
</h2>
<p class="highlightme">
We aim to organise various technical competitions covering participation from students
across the globe.
We aim to build a strong mentorship cum guidance program, where juniors can be guided
by their seniors in various technical domains and other work startegies.
</p>
<p class="highlightme">
<span class="lnr lnr-arrow-right"></span> To create and disseminate knowledge through
research, quality education and creative inquiry.
</p>
<p class="highlightme">
<span class="lnr lnr-arrow-right"></span> To orient the education and research towards
latest developments through close interactions with the industry, other institutions of
higher learning and research organizations.
</p>
<p class="highlightme">
<span class="lnr lnr-arrow-right"></span> To organize workshops, short term courses,
bootcamps for hands on experience in emerging fields and technology to students.
</p>
</div>
</div>
</div>
</section>
<!-- End parallux Area -->
<!-- Start Faculty Area -->
<!--------------Footer Section ----------->
<section class="footer" id="footer">
<h4>About Us</h4>
<p>Society for Progression of Instrumentation and Control
Engineering <b>(SPICE)</b> <br> A society which was established in the department of Instrumentation and
Control Engineering (ICE) NIT Jalandhar
</p>
<div class="icons social">
<a href="https://twitter.com/NitjSpice" target="_blank"><i class="fab fa-twitter"></i></a>
<!-- <a href=""><i class="fab fa-facebook" target="_blank"></i></a> -->
<a href="https://instagram.com/spice_society_nitj?utm_medium=copy_link" target="_blank"><i
class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/spice-society-nit-jalandhar/?viewAsMember=true" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
<h5>Contact Us - Dr. Afzal Sikander</h5>
<p>Email Id: [email protected]</p>
<br>
<p>Copyright © 2022 | All rights reserved, SPICE NIT Jalandhar - 144011</p>
</section>
<script>
var slideIng = document.querySelector("#slider_img_about");
var images = new Array(
"./images/nitj.png",
"./images/icebuild2.jpg",
"./images/nitj.png",
"./images/icebuild2.jpg"
);
var len = images.length;
var i = 0;
function slider() {
if (i > len - 1) {
i = 0;
}
slideIng.src = images[i];
i++;
setTimeout('slider()', 3000);
}
var navlinks = document.querySelector('.menu_links');
function showMenu() {
navlinks.style.right = '0';
}
function hideMenu() {
navlinks.style.right = '-200px';
}
</script>
</body>
</html>