-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.html
121 lines (114 loc) · 4.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gallery</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./fontawesome-free-5.11.2-web/css/all.css">
<link rel="stylesheet" href="./css/lightbox.min.css">
<script type="text/javascript" src="./js/lightbox-plus-jquery.min.js"></script>
<script type="text/javascript" src="./js/lightbox-plus-jquery.js"></script>
</head>
<body>
<header>
<div class="logo">
<img src="./images/8.png" alt="">
</div>
<nav class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
<section class="welcome">
<h1>WELCOME TO V-HUB</h1>
<a href="">Gallery</a>
</section>
</header><br>
<section>
<div class="gallery">
<a href="./images/gallery/img1.jpg" data-lightbox="mygallery"><img src="./images/gallery/img1.jpg"
alt=""></a>
<a href="./images/gallery/img2.jpg" data-lightbox="mygallery"><img src="./images/gallery/img2.jpg"
alt=""></a>
<a href="./images/gallery/img3.jpg" data-lightbox="mygallery"><img src="./images/gallery/img3.jpg"
alt=""></a>
<a href="./images/gallery/img4.jpg" data-lightbox="mygallery"><img src="./images/gallery/img4.jpg"
alt=""></a>
<a href="./images/gallery/img5.jpg" data-lightbox="mygallery"><img src="./images/gallery/img5.jpg"
alt=""></a>
<a href="./images/gallery/img6.jpg" data-lightbox="mygallery"><img src="./images/gallery/img6.jpg"
alt=""></a>
<a href="./images/gallery/img7.jpg" data-lightbox="mygallery"><img src="./images/gallery/img7.jpg"
alt=""></a>
<a href="./images/gallery/img8.jpg" data-lightbox="mygallery"><img src="./images/gallery/img8.jpg"
alt=""></a>
<a href="./images/gallery/img9.jpg" data-lightbox="mygallery"><img src="./images/gallery/img9.jpg"
alt=""></a>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-section about">
<h1 class="logo-text">content</h1>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem quaerat
fugiat quae tenetur nobis et optio culpa excepturi, cum ratione voluptate,
</p>
<div class="contact">
<span><i class="fas fa-phone"> +2347018864486</i></span><br>
<span> <i class="fas fa-envelope"> google.com</i> </span>
<!-- <span><i class="fas fa-location"> Anguldi</i></span> -->
</div>
<div class="social">
<a href=""><i class="fab fa-facebook"></i></a>
<a href=""><i class="fab fa-whatsapp"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
<a href=""><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="footer-section links">
<h1>QUICK LINKS</h1>
<br>
<ul>
<a href="">
<li>Event</li>
</a>
<a href="./galllery.html">
<li>Gallery</li>
</a>
<a href="">
<li>Team</li>
</a>
<a href="">
<li>Contact</li>
</a>
<a href="">
<li>Shop</li>
</a>
</ul>
</div>
<div class="footer-section contact-form">
<form action="">
<h1>CONTACT</h1>
<input class="contact-input" type="text" placeholder="Enter Your Email">
<textarea class="contact-input" name="" id="" cols="30" rows="10"
placeholder="Type Message"></textarea><br>
<button class="contact-input">
<i class="fas fa-envelope"> </i>
</button>
</form>
</div>
</div>
<div class="footer-bottom">
© internship@nHub
</div>
</footer>
</body>
</html>