-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
367 lines (353 loc) · 18.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- ICON library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>IEEE SB NITD sample</title>
<!--CSS-->
<link rel="stylesheet" type="text/css" href="IEEEstyle.css">
<script src="https://kit.fontawesome.com/yourcode.js" crossorigin="anonymous"></script>
<!--favicon-->
</head>
<body>
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div>
<a class="navbar-brand" href="#">
LOGO
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="index6.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Alumni</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Activities</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
</ul>
</div>
</nav>
<!-- CAROUSAL -->
<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>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="carslide1.jfif" alt="First slide" style="height: 650px">
<div class="carousel-caption d-none d-md-block">
<p style="color: white">Providing the perfect platform for all to collaborate and innovate.</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="carslide2.jfif" alt="Second slide" style="height: 650px">
<div class="carousel-caption d-none d-md-block">
<p style="color: white">Conducting seminars and workshops on the most trending and interesting topics.</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="carslide3.jpg" alt="Third slide" style="height: 650px">
<div class="carousel-caption d-none d-md-block">
<p style="color: white">Collaborating with the best minds to take your projects to the next level.</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="carslide4.jpg" alt="Fourth slide" style="height: 650px">
<div class="carousel-caption d-none d-md-block">
<p style="color: white">Expanding your network by connecting with the best minds in the field.</p>
</div>
</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>
<br><br>
<body>
<!-- ABOUT IEEE -->
<div style="background-color:#dad9de;height:650px;">
<h1 style="text-align: center;">About IEEE</h1>
<hr style="border: 2px solid;width: 5%;color: black;">
<br>
<div style="margin: auto;width: 75%;padding: 10px;">
<p style="text-align: center; font-size:13px;" >IEEE is the world’s largest professional association dedicated to advancing technological innovation and excellence for the benefit of humanity.When you join IEEE, you join a community of over 425,000 technology and engineering professionals united by a common desire to continuously learn, interact, collaborate, and innovate. IEEE Membership provides you with the resources and opportunities you need to keep on top of changes in technology; get involved in standards development; network with other professionals in your local area or within a specific technical interest; mentor the next generation of engineers and technologists, and so much more. For more info about IEEE visit <a href="https://www.ieee.org/" style="font-size:13px;color:blue">ieee.org.</a></p>
</div>
<div class="row" style="margin: auto;width: 75%;padding: 10px;">
<div class="flip-card col-sm-6">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="flipcardmember2.jfif" alt="Avatar" style="width:430px;height:297px;">
</div>
<div class="flip-card-back" style="margin: auto;width: 100%;padding: 10px;">
<h1>IEEE membership</h1><br>
<p style="color: white">To join this community of over 425,000 technology and engineering professionals united by a common desire to continuously learn, interact, collaborate, and innovate visit ieee/membership and obtain your membership at the earliest.</p>
</div>
</div>
</div>
<div class="flip-card col-sm-6">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="flipcardsociety2.jfif" alt="Avatar" style="width:430px;height:297px;">
</div>
<div class="flip-card-back" style="margin: auto;width: 100%;padding: 10px;">
<h1>IEEE Societies</h1>
<br>
<p style="color: white">IEEE Society members stay technically current, network with colleagues locally and abroad, and collaborate on research and projects with leading experts -- all while taking advantage of specialized opportunities.To know about the various IEEE societies visit ieee/societies.</p>
</div>
</div>
</div>
</div>
</div>
<!-- ACTIVITIES -->
<h1 style="margin-top:150px;text-align: center;">Activities</h1>
<hr style="border: 2px solid;width: 5%;color: black;">
<div class="card mb-3" style="width: 800px;height:260px;margin:auto;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="Txpic.jpg" style="width:105%;height:97%">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title"><b>TechX 2020</b></h5>
<p class="card-text">IEEE COMPUTER SOCIETY SYP MGAB in collaboration with IEEE SB NIT Durgapur and IEEE SB Jadavpur University hosted the IEEE TechX Congress 2020: Eastern India Techno-Management Leadership Summit on 28th Feb - 1st March 2020, where it assimilated all students and Young Professionals from various IEEE Sections and students branches.<!-- <br><a href="https://www.instagram.com/techx_ieee/" style="font-size:15px;color:blue;text-align:left">Visit Insta Page</a> <a href="https://www.facebook.com/techX.congress" style="font-size:15px;color:blue;text-align:right">Visit Fb Page</a> --></p>
</div>
</div>
</div>
</div>
<div class="row1">
<div class="column1">
<div class="card" style="margin-left:160px"><img src="MLS.jpg" style="width:100%;height:65%">
<h4><b>IntelliSys</b></h4>
<p>IntelliSys:Machine Learning Symposium was a huge success with a colossal turnout of over 150 enthusiasts who were too eager to learn and explore.IEEE SB NIT Durgapur extends its heartfelt gratitude to our guest speakers, Dr. Fakhral Yusoff and Mr. Shivam Abhilash for leaving us all dazzled and especially to ...<a href="https://www.ieeesbnitdgp.com/events/intellisys" target="new" style="font-size: 15px;color:blue;">Read more</a></p>
</div>
</div>
<div class="column1">
<div class="card" style="margin-right:160px"><img src="sdv.jfif" style="width:100%;">
<h4><b>SDV 2.0</b></h4>
<p>In this era of advancement and competing efficiency where society expects autonomous vehicles to be held to a higher standard than human drivers,we in collaboration with the Society of Automotive Engineers organized a two-day workshop to introduce students to the world of autonomous driving.<a href="https://www.ieeesbnitdgp.com/events/sdv" target="new" style="font-size: 15px;color:blue;">Read more</a></p>
</div>
</div>
</div>
<!-- BLOG POSTS -->
<h1 style="margin-top:150px;text-align: center;">Blog posts</h1>
<hr style="border: 2px solid;width: 5%;color: black;">
<div class="row" style="margin: auto">
<div class="column">
<div class="card" ><img src="Bn.jfif" style="width:100%">
<h4><b>Blockchain in Anti Money-Laundering Tracking System</b></h4>
<p>Globalization and the rapid advancement in technology have created a problem for banks and governments at an unprecedented scale all around the globe namely Money...<a href="https://insight.ieeesbnitdgp.com/BlockchainTracking/" target="new" style="font-size: 15px;color:blue;">Read more</a></p>
</div>
</div>
<div class="column">
<div class="card"><img src="energy.jfif" style="width:100%">
<h4><b>Pavegen Tiles: Harvesting Energy from Footsteps</b></h4>
<p>Sustainable green energy needs and demands are increasing globally.To meet the growing demands one alternative source of energy generation could be human energy harvesting, where the source of ....<a href="https://insight.ieeesbnitdgp.com/PavegenTiles/" target="new" style="font-size: 15px;color:blue;">Read more</a></p>
</div>
</div>
<div class="column">
<div class="card" ><img src="blogpic.jpg" style="width:100%;">
<h4><b>Mind Reading Using Artificial Intelligence</b></h4>
<p>AI has always been....<a href="https://insight.ieeesbnitdgp.com/MindreadingUsingAI/" target="new" style="font-size: 15px;color:blue;">Read more</a></p>
</div>
<div class="container1">
<img src="insightpic1.jpg" style="width:50%;height:50%;margin:30px;filter: blur(8px);border-radius:25px;">
<div class="centered" style="color: white"><p><small>Find more such articles on our blogpage </small><a href="https://insight.ieeesbnitdgp.com/" style="color:#150d6b;text-decoration: underline" target="new"><b>Insight</b></a></p></div>
</div>
</div>
</div>
<!-- OUR TEAM -->
<h1 style="margin-top:70px;text-align: center;">Our Team</h1>
<hr style="border: 2px solid;width: 5%;color: black;">
<div class="row1" style="margin: auto;">
<div class="column2">
<div class="card" ><img src="guyprof.png" style="width:100%">
<h4><b>Dhrubajyoti Kumar</b></h4>
<p>Chair</p>
<div style="text-align: center;margin-right:13px">
<a href="https://www.facebook.com/nitdgpieeesociety/?ref=page_internal" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/ieeesb_nitdgp/?hl=en" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/company/ieeesbnitdgp/?originalSubdomain=in" class="fa fa-linkedin"></a>
</div>
</div>
</div>
<div class="column2">
<div class="card" ><img src="guyprof.png" style="width:100%">
<h4><b>Khushi Bansal</b></h4>
<p>Vice Chair</p>
<div style="text-align: center;margin-right:13px;">
<a href="https://www.facebook.com/nitdgpieeesociety/?ref=page_internal" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/ieeesb_nitdgp/?hl=en" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/company/ieeesbnitdgp/?originalSubdomain=in" class="fa fa-linkedin"></a>
</div>
</div>
</div>
<div class="column2">
<div class="card" ><img src="guyprof.png" style="width:100%">
<h4><b>Shubhangee Shrey</b></h4>
<p>Webmaster and Secretary</p>
<div style="text-align: center;margin-right:13px">
<a href="https://www.facebook.com/nitdgpieeesociety/?ref=page_internal" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/ieeesb_nitdgp/?hl=en" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/company/ieeesbnitdgp/?originalSubdomain=in" class="fa fa-linkedin"></a>
</div>
</div>
</div>
<div class="column2">
<div class="card" ><img src="guyprof.png" style="width:100%">
<h4><b>Aman Agarwal</b></h4>
<p>Treasurer</p>
<div style="text-align: center;margin-right:13px">
<a href="https://www.facebook.com/nitdgpieeesociety/?ref=page_internal" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/ieeesb_nitdgp/?hl=en" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/company/ieeesbnitdgp/?originalSubdomain=in" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<!-- TESTIMONIALS -->
<div style="background-color:#dad9de;height: 700px;">
<h1 style="text-align: center;margin-top:50px">Testimonials</h1>
<hr style="border: 2px solid;width: 5%;color: black;">
<div class="column3">
<div class="card" style="width:50%;margin-left:317px;"><img src="guyprof.png" style="width:50%;height:50%;align-self: center;">
<h4><b>Aniq Ur Rahman</b></h4>
<p>Alumni 2019</p>
<div style="text-align: center;margin-right:13px;font-size:13px">
<p>"Managing the IEEE Student Branch along with a bunch of enthusiastic people was an experience which cannot be put into words, still I'll mention a few takeaways which I think has helped me develop as a person. It made me realise that "collaboration is the key" and following that we worked together with other societies and clubs on campus, to conduct events focused on research. I apply this finding in my professional life to work on research projects with collaborators across the globe. Working in IEEE SB reinforced my love for research which fuels my daily life."</p>
</div>
</div>
</div>
</div>
<!-- OUR COLLABORATIONS -->
<h1 style="margin-top:50px;text-align: center;">Our Collaborations</h1>
<hr style="border: 2px solid;width: 5%;color: black;">
<div class="row" style="margin: 50px">
<div class="col-md-4" style="text-align: left;">
<div><h4>We believe in</h4></div><div><h2><b>COLLABORATIONS!</b></h2></div>
</div>
<div class="col-md-8">
<div class="pics1">
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
<span>
<img src="logoforhome.png">
</span>
</div>
</div>
</div>
<!-- CONTACT US -->
<h1 style="margin-top:50px;text-align: center;">Contact Us</h1>
<hr style="border: 2px solid;width: 5%;color: black;">
<div>
<div class="col-md-8">
<div>
<input type="text" placeholder="Enter Name" style="width: 300px">
<input type="email" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email"style="width: 350px">
<input type="text" placeholder="Message" style="margin-top:10px;width: 658px;height: 150px">
<button type="submit" class="btn btn-primary" style="margin:5px;text-align: center;">Send Your Message</button>
</div>
</div>
<div class="col-md-4">
<ul>
<li class="d-flex align-items-centre">
<div class="icon-cover"><img src="location.png" class="icon-fluid" style="width: 30px;">
</div>
<div class="text-left"> NIT Durgapur<br> Mahatma Gandhi Avenue, Durgapur, West Bengal,India
</div>
</li>
<li class="d-flex align-items-centre"><div class="icon-cover"><img src="envelope.png" class="icon-fluid" style="width: 25px;">
</div>
<div><p> ieeesb.nitdgp@gmail.com</p>
</div>
</li>
</ul>
</div>
</div>
<!-- FOOTER -->
<footer>
<div class="row" style="text-align: center;">
<div class="col-sm-4">
<img src="IEEElogo.svg" class="img-fluid img-responsive" width="30%" >
<p style="font-size: 15px;color: black;text-align: left;">The IEEE Student Branch, NIT Durgapur is a society of enthusiasts aimed at promoting research-related activities in the campus .Comprising of bright researchers, developers, speakers, and other contributors we are a society that welcomes in the era of better research prospects, on the campus.</p>
</div>
<div class="col-sm-4 text-center">
<h2 style="font-size: 20px;">Quick Links</h2>
<hr style="border: 2px solid #FFFFFF;width: 50%;align-self: left">
<ul>
<li><a href="#" style="font-size: 15px">About Us</a></li>
<li><a href="https://www.ieee.org/" target="new" style="font-size: 15px">About IEEE</a></li>
<li><a href="#" style="font-size: 15px">Our Activities</a></li>
<li><a href="#" style="font-size: 15px">Our Team</a></li>
</ul>
</div>
<div class="col-sm-4 text-center">
<h2 style="font-size: 20px">Follow Us</h2>
<hr style="border: 2px solid #FFFFFF; width: 50%">
<a href="https://www.facebook.com/nitdgpieeesociety/?ref=page_internal" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/ieeesb_nitdgp/?hl=en" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/company/ieeesbnitdgp/?originalSubdomain=in" class="fa fa-linkedin"></a>
<a href="https://twitter.com/IEEESBNITD" class="fa fa-twitter"></a>
<a href="https://www.youtube.com/channel/UCs-WfkTLWvmDGEJ4G_pOCgA/videos?view=0&sort=p" class="fa fa-youtube"></a>
<p>Subscribe to our newsletter and get daily updates</p>
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<button type="button">Go</button>
</div>
<div>
</div>
</div>
<p class="text-center">Copyright ©IEEE.All rights reserved.</p>
</footer>
<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>
</body>
</html>