-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
520 lines (430 loc) · 19.2 KB
/
gallery.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
519
520
<!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">
<meta charset="UTF-8">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap" rel="stylesheet">
<!-- AOS -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- Font-Awesome -->
<script src="https://kit.fontawesome.com/e22d7ebee8.js" crossorigin="anonymous"></script>
<!-- CSS -->
<link rel="stylesheet" href="./css/slider.css">
<link rel="stylesheet" href="./css/card2.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/lightbox.min.css">
<link rel="stylesheet" media="screen and (max-width:768px)" href="./css/mobile.css">
<link rel="stylesheet" href="../css/toggle-btn.css">
<title>IEEE GTBIT | Gallery</title>
</head>
<body>
<div class="top-header">
<a href="./TeamPage/team.html">Our Team</a>
<a href="Achievements.html">Achievements</a>
</div>
<!-- Navigation Bar For Phone -->
<!-- Load an icon library to show a hamburger menu (bars) on small screens -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Top Navigation Menu -->
<div class="topnav">
<a style="padding: 0; text-align: left;" href="#home" class="active"><img class="logopng"
style="width: 100px;padding: 0;" src="./img/iee-logo.png" alt=""></a>
<!-- Navigation links (hidden by default) -->
<div id="myLinks">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="./EventsPages/EventsMain.html">Events</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a class="join" href="https://www.ieee.org/membership/join/index.html?WT.mc_id=hc_join" target="blank">Join
IEEE</a></li>
</div>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
<a icon-ham href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars "></i>
</a>
</div>
<script>/* Toggle between showing and hiding the navigation menu links when the user clicks on the hamburger menu / bar icon */
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}</script>
<!-- Navigation bar for computer -->
<header class="top">
<div class="navbar top" id="navbar">
<!-- Navbar logo and name -->
<div class="logo">
<img src="./img/iee-logo.png" alt="">
<h3 class="logotext" id="logotext">IEEE GTBIT</h3>
</div>
<!-- Navbar Links -->
<nav>
<ul class="navbar-ul">
<li><a href="index.html"> Home</a></li>
<li><a href="about.html">About Us</a></li>
<!-- EVENTS -->
<li class="dropdown list-events">
<a href="./EventsPages/EventsMain.html" class="dropbtn"> Events<i class="fas fa-chevron-down"></i></a>
<div class="dropdown-content">
<div class="flex-items ">
<div>
<!-- <p>IEEE GTBIT 2021-22</p> -->
<a href="./EventsPages/Event_01_Croudhacks.html">CrowdHacks</a>
<a href="./EventsPages/Event_02_Arduiknow.html">ArduiKnow</a>
<a href="./EventsPages/Event_03_Pcb_Workshop.html">PCB Workshop</a>
<a href="./EventsPages/Event_04_Ieee_extreme.html">IEEExtreme</a>
<a href="./EventsPages/Event_05_DevDays2022.html">DevDays 2022</a>
</div>
<div>
<!-- <p>WIE IEEE GTBIT</p> -->
<a href="./EventsPages/Event_06_BasicsOfCyberSecurity.html">Basics of Cybersecurity</a>
<a href="./EventsPages/Event_07_Getting_started_with_wordpress.html">Getting started with
Wordpress</a>
<a href="./EventsPages/Event_08_MustHaveSkills.html">Must-Have Skills for Placements</a>
<a href="./EventsPages/Event_09_BasicsOfPython.html">Basics of Python</a>
<a href="./EventsPages/Event_10_Roadmap_to_webdev.html">Roadmap to Web Development</a>
</div>
<div>
<!-- <p>CS Chapter IEEE GTBIT</p> -->
<a href="./EventsPages/Event_11_Build_your_portfolio.html">Build Your Portfolio</a>
<a href="./EventsPages/Event_12_AML_Venture.html">AML Venture</a>
<a href="./EventsPages/Event_13_Aab_samjhauta_nahi.html">#AbSamjhautaNahin</a>
<a href="./EventsPages/Event_14_Wordpress_Webinar.html">WordPress Webinar</a>
<a href="./EventsPages/Event_15_Importance_of_personality_dev.html">Personality Development</a>
</div>
<div>
<a href="./EventsPages/Event_16_Resume_building.html">Resume Building</a>
<a href="./EventsPages/Event_17_Explore_with_Ent.html">Explore With Entrepreneurs</a>
<a href="./EventsPages/Event_18_Quizzards.html">Quizzards</a>
<a href="./EventsPages/Event_19_internet_of_things.html">Internet Of Thingd</a>
<a href="./EventsPages/Event_20_Quizace.html">Quiz Ace</a>
</div>
</div>
</div>
<!-- GALLERY -->
<li class="dropdown list-gallery">
<a class="open" href="gallery.html" class="dropbtn">Gallery</a>
<!-- <div class="dropdown-content">
<div class="flex-items ">
<div>
<a href="gallery.html">All Events</a>
<a href="gallery.html">Our Execom</a>
</div>
</div>
</div> -->
<!-- <li><a href="./EventsPages/EventsMain.html">Events</a></li> -->
<li><a href="contact.html">Contact Us</a></li>
<li><a class="join" href="https://www.ieee.org/membership/join/index.html?WT.mc_id=hc_join"
target="blank">Join IEEE</a></li>
</ul>
</nav>
</div>
</header>
<!-- Sidebar -->
<section id="sidebar">
<ul class="sidebar">
<li class="sb-item facebook">
<a href="https://www.facebook.com/ieeegtbit/" class="sb-link">
<i class="fab fa-facebook-f" style="background-color: #4267B2;"></i>
<span class="sb-title">Facebook</span>
</a>
</li>
<li class="sb-item email">
<a href="" class="sb-link">
<i class="far fa-envelope" style="background-color: #DB4437;"></i>
<span class="sb-title">Email</span>
</a>
</li>
<li class="sb-item insta">
<a href="https://instagram.com/ieeegtbit?utm_medium=copy_link" class="sb-link">
<i class="fab fa-instagram"
style="background: linear-gradient(45deg,#405DE6,#5851DB,#833ab4,#c13584,#e1309c,#fd1d1d);"></i>
<span class="sb-title">Instagram</span>
</a>
</li>
<li class="sb-item twitter">
<a href="https://twitter.com/IEEEGTBIT?t=xX2-rhwhPJLh3oa3kpPnOw&s=08" class="sb-link">
<i class="fab fa-twitter" style="background-color:#00acee;"></i>
<span class="sb-title">Twitter</span>
</a>
</li>
<li class="sb-item whatsapp">
<a href="" class="sb-link">
<i class="fab fa-whatsapp" style="background-color: #25D366;"></i>
<span class="sb-title">WhatsApp</span>
</a>
</li>
</ul>
</section>
<!-- Showcase -->
<section class="showcase showcase-2">
<div class="content">
<!-- <h1>About Us</h1>
<h3>Lorem ipsum dolor sit amet.</h3>
<br> -->
<!-- <a class="btn-1" href="#about">About Us</a> <a class="btn-2" href="#joinIEE">Join IEEE</a> -->
</div>
</section>
<!-- Gallery -->
<section id="gallery" class="gallery flex-grid section-padding">
<header class="section-header" data-aos="fade-up" data-aos-duration="1300">
<!-- <h3>Lorem ipsum dolor sit.</h3> -->
<h1 class="heading1">Our Gallery</h1>
<p>"History is a gallery of pictures in which there are few originals and many copies."</p>
</header>
<div class="row" data-aos="fade-up" data-aos-duration="1300">
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0036.jpg" data-lightbox="cases"
data-title=" ">
<img src="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0036.jpg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Crowdhacks/Tata2.png" data-lightbox="cases" data-title=" "> <img
src="./img/Event pics for gallery/Crowdhacks/Tata2.png" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Entre/IMG-20211003-WA0061.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/Entre/IMG-20211003-WA0061.jpg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211007-WA0066.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211007-WA0066.jpg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/HomePage/IMG-20211005-WA0043.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/HomePage/IMG-20211005-WA0043.jpg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211006-WA0050.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211006-WA0050.jpg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Placement event.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/Placement event.jpg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Portfolio workshop.png" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/Portfolio workshop.png" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0029.jpg" data-lightbox="cases"
data-title=" ">
<img src="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0029.jpg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0033.jpg" data-lightbox="cases"
data-title=" ">
<img src="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0033.jpg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0034.jpg" data-lightbox="cases"
data-title=" ">
<img src="./img/Event pics for gallery/Arduino Workshop/IMG-20210920-WA0034.jpg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211004-WA0040.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211004-WA0040.jpg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211004-WA0045.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211004-WA0045.jpg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211006-WA0043.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211006-WA0043.jpg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Crowdhacks/uiux.png" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/Crowdhacks/uiux.png" alt="">
</a>
<!-- NEW Image -->
<a href="./img/IEEE Events/image11.png" data-lightbox="cases" data-title=" ">
<img src="./img/IEEE Events/image11.png" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Crowdhacks/WhatsApp Image 2021-12-08 at 21.09.34.jpeg"
data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/Crowdhacks/WhatsApp Image 2021-12-08 at 21.09.34.jpeg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211007-WA0091.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211007-WA0091.jpg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/cybersecurity workshop/Screenshot (1267).png" data-lightbox="cases"
data-title=" ">
<img src="./img/Event pics for gallery/cybersecurity workshop/Screenshot (1267).png" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Crowdhacks/WhatsApp Image 2021-12-08 at 21.16.30.jpeg"
data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/Crowdhacks/WhatsApp Image 2021-12-08 at 21.16.30.jpeg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/IEEE Events/DEVdAYS2022.jpeg" data-lightbox="cases" data-title=" ">
<img src="./img/IEEE Events/DEVdAYS2022.jpeg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211004-WA0045.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211004-WA0045.jpg" alt="">
</a>
</div>
<div class="column">
<!-- NEW Image -->
<a href="./img/Event pics for gallery/Crowdhacks/WhatsApp Image 2021-12-08 at 21.30.04-1.jpeg"
data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/Crowdhacks/WhatsApp Image 2021-12-08 at 21.30.04-1.jpeg" alt="">
</a>
<!-- NEW Image -->
<a href="./img/Event pics for gallery/IEEE Day/IMG-20211007-WA0086.jpg" data-lightbox="cases" data-title=" ">
<img src="./img/Event pics for gallery/IEEE Day/IMG-20211007-WA0086.jpg" alt="">
</a>
</div>
</div>
<br>
<br>
</section>
<!-- Footer -->
<footer>
<div class="footer">
<div class="footer1">
<div class="footer1-content">
<div>
<img src="./img/iee-logo.png" alt="">
</div>
<div>
<h1>IEEE GTBIT</h1>
</div>
</div>
<div>
<p>The goal of IEEE GTBIT SB is to transform students into polished working professionals that are
industry-tailored. Expanding the knowledge pool of students and giving them practical exposure is one of our
top priorities along with many others like communication skills. We provide them with the proper tools,
guidance and support system which they need in their journey to climb the staircase of success. Our mentors
along with the team are aimed at providing an environment that helps the students to become better each day.
</p>
<br>
<a href="#" class="btn-1">Join IEEE</a> <a href="#" class="btn-2">Contact Us</a>
</div>
</div>
<!-- NAVIGATE TO -->
<div class="footer1 navigation-footer">
<h2 class="blue">Navigate to</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="./EventsPages/EventsMain.html">Events</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a class="join" href="https://www.ieee.org/membership/join/index.html?WT.mc_id=hc_join">Join IEEE</a>
</li>
</ul>
<!-- <h2 class="blue">Other Links</h3>
<ul>
<li><a href="#">Upcoming-events</a></li>
<li><a href="#">Past Events</a></li>
</ul> -->
<br>
<div class="social">
<br>
<h2 class="blue">Our Pages</h2>
<a href="https://www.facebook.com/ieeegtbit"><i class="fab fa-facebook"></i></a>
<a href="https://www.linkedin.com/company/ieee-student-branch-at-gtbit/mycompany/"><i
class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/ieeegtbit/"><i class="fab fa-instagram"></i></a>
</div>
</div>
<!-- FOOTER FORM -->
<div class="footer1 footer-form">
<h2 class="blue">Any Queries? Ask here</h2>
<form action="process.php" class="form-footer">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email">
<input type="tel" name="tel" placeholder="Contact Number">
<textarea name="msg" id="" cols="30" rows="10" placeholder="Query"></textarea>
<input class="btn-1" type="submit" value="Submit query" class="btn-1">
</form>
</div>
</div>
<!-- <div class="developer-footer">
<p> Website by <a href="#">IEEE GTBIT Web Developers Team</a> </p>
</div> -->
<div class="rights">
<div>
<p> Website by <a href="#">IEEE GTBIT Web Developers' Team</a> </p>
<hr style="margin: 10px 0;height: 1px;">
<p style="font-size: 13px;">IEEE GTBIT © All Right Reserved</p>
</div>
</div>
</footer>
<!-- JAVA SCRIPT -->
<script src="https://code.jquery.com/jquery-3.5.0.min.js"
integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script>
<script src="js/lightbox.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script>
// const navbar = document.getElementById('navbar');
// let scrolled = false;
// window.onscroll = function () {
// if (window.pageYOffset > 680) {
// navbar.classList.remove('top');
// if (!scrolled) {
// navbar.style.transform = 'translateY(-70px)';
// }
// setTimeout(function () {
// navbar.style.transform = 'translateY(0)';
// scrolled = true;
// }, 200);
// } else {
// navbar.classList.add('top');
// scrolled = false;
// }
// };
// Smooth Scrolling
$('#navbar a, .btn-1, .btn-2, .btn-3').on('click', function (e) {
if (this.hash !== '') {
e.preventDefault();
const hash = this.hash;
$('html, body').animate(
{
scrollTop: $(hash).offset().top - 100,
},
800
);
}
});
</script>
</body>
</html>