-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgallery.html
58 lines (51 loc) · 2.95 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1, width=device-width">
<link rel= "stylesheet" type= "text/css" href= "./static/styles/layout.css">
<link rel="shortcut icon" href="./static/images/vrmc_logo_clearbg.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Gallery</title>
<link rel= "stylesheet" type= "text/css" href= "./static/styles/gallery.css">
</head>
<body>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fa fa-bars" style="color: #800000"></i>
</label>
<a href="./index.html"><img src="./static/images/vrmc_name_clear.png" id="name-logo"></a>
<ul id="ul-container">
<li><a href="./aboutus.html" class="">About Us</a></li>
<li><a href="./achievements.html" class="">Achievements</a></li>
<li><a href="./events.html" class="">Events</a></li>
<li><a href="./competitions.html" class="">Competitions</a></li>
<li><a href="./faq.html" class="">FAQs</a></li>
<li><a href="./gallery.html" class="">Gallery</a></li>
</ul>
</nav>
<ul id="gallery-container">
<li><img src="./static/images/gallery1.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery2.JPG" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery3.jpeg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery4.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery5.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery6.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery7.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery8.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery9.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery10.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery11.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery12.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery13.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery14.jpg" alt="gallery-pic-1"></li>
<li><img src="./static/images/gallery15.jpg" alt="gallery-pic-1"></li>
</ul>
<footer>
<label class="footer">©VRMC 2023</label>
<a href="https://github.com/vrmc/vrmc.github.io" target="_blank" class="git" style="color: white">Link to Github</a>
<a href="https://www.instagram.com/vjrobotics/" target="_blank" class="fa fa-instagram insta" style="color: white"></a>
<a href="https://www.youtube.com/@VRMC" target="_blank" class="fa fa-youtube yt" style="color: white"></a>
</footer>
</body>
</html>