-
Notifications
You must be signed in to change notification settings - Fork 3
/
gallery.html
57 lines (50 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="gallery.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<title>Amphi-1O1-Gallery</title>
</head>
<body>
<div class="container">
<section id="header"><!--logo on right and navbar right side -->
<div class="logo"> <!--company logo and name on left side-->
<h4 style="align-items: center;justify-content: center;"><video src="logovdo.mp4" width="45" height="35" autoplay muted loop></video> FALCON</h4>
</div>
<div class="main-navbar"> <!--Navbar right aligned-->
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="rd.html">R&D</a></li>
<li><a href="aboutus.html">ABOUT</a></li>
</ul>
</div>
</section>
<section class="showcase">
<div class="video-container">
<video src="imggallery/galleryvideo.mp4" autoplay muted loop></video>
</div>
<div class="content">
<h1 style="background: transparent;">GALLERY</h1>
</div>
</section>
<div class="gal">
<img src="imggallery/img1.jpg" alt="" width="80%">
<img src="imggallery/img2.jpg" alt="" width="80%">
<img src="imggallery/img3.jpg" alt="" width="80%">
<img src="imggallery/img4.jpg" alt="" width="80%">
<img src="imggallery/img5.jpg" alt="" width="80%">
</div>
<section id="social">
<h3>Follow Us</h3>
<a href="https://github.com/Taarushthenoob/MenteeProject1" target="_blank"><i class="fab fa-github fa-3x"></i></a>
<a href="https://facebook.com/devsocbpgc" target="_blank"><i class="fab fa-facebook fa-3x"></i></a>
<a href="https://linkedin.com/company/devsoc-bpgc" target="_blank"><i class="fab fa-linkedin fa-3x"></i></a>
<a href="https://instagram.com/devsocbitsgoa" target="_blank"><i class="fab fa-instagram fa-3x"></i></a>
<p>Copyright @2021 DevSoc Mentee </p>
</section>
</div>
</body>
</html>