-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
81 lines (67 loc) · 2.71 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
<!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,intial-scale=1.0" />
<link rel="stylesheet" href="css/gallery.css" />
<script src="js/script.js" defer></script>
<title>Team Rudra</title>
</head>
<body>
<div id="overlay"></div>
<div id="mobile-menu" class="mobile-main-menu">
<ul>
<li class="mobile-only"><a href="achievements.html">Achievements</a></li>
<li class="mobile-only"><a href="gallery.html">Gallery</a></li>
<li class="mobile-only"><a href="team.html">Team</a></li>
<li class="mobile-only"><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<header class="main-header">
<div class="logo">
<a href="index.html">
<img src="img/logo.png" alt="Team Rudra" />
</a>
</div>
</header>
<!-- hamburger -->
<button id="menu-btn" class="hamburger" type="button">
<span class="hamburger-top"></span>
<span class="hamburger-middle"></span>
<span class="hamburger-bottom"></span>
</button>
<h1>Glimpses of Team RUDRA</h1>
<div class="gallery">
<figure class=”gallery__item gallery__item--1 ">
<img src="img/2013.jpg " class="gallery__img " alt="Image 1 ">
</figure>
<figure class="gallery__item gallery__item--2 ">
<img src="img/2013.jpg " class="gallery__img " alt="Image 2 ">
</figure>
<figure class="gallery__item gallery__item--3 ">
<img src="img/2013.jpg " class="gallery__img " alt="Image 3 ">
</figure>
<figure class="gallery__item gallery__item--4 ">
<img src="img/2013.jpg " class="gallery__img " alt="Image 4 ">
</figure>
<figure class="gallery__item gallery__item--5 ">
<img src="img/2013.jpg " class="gallery__img " alt="Image 5 ">
</figure>
<figure class="gallery__item gallery__item--6 ">
<img src="img/2013.jpg " class="gallery__img " alt="Image 6 ">
</figure>
</div>
<footer>
<ul>
<li>RUDRA © 2022</li>
<li><a href="https://instagram.com/team_rudra ">Instagram</a></li>
<li><a href="https://twitter.com/srmrudra ">Twitter</a></li>
<li><a href="https://wa.me/917781996283 ">Whatsapp</a></li>
<li><a href="https://www.facebook.com/srmteamrudra/ ">Facebook</a></li>
<li><a href="https://www.youtube.com/c/RUDRASRMMARSROVER ">YouTube</a></li>
<li><a href="https://www.linkedin.com/company/srmrudra/mycompany/ ">LinkedIn</a></li>
</ul>
</footer>
</body>
</html>