-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgallery.html
125 lines (112 loc) · 3.19 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
<html>
<head>
<title>Gallery Page</title>
<link type="text/css" rel="stylesheet" href="style1.css">
<style>
body{margin: 0}
.container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
background: black;
padding: 12px;
}
.container img {
/* width: 100%;*/
width:300px;
height:200px;
display: block;
-webkit-filter: grayscale(1);
filter: grayscale(1);
transition: all 0.2s ease-out;
}
.container img:hover {
transform: scale(1.06);
-webkit-filter: grayscale(0);
filter: grayscale(0);
border : 1px solid white;
box-shadow: 0 0 50px #999999;
}
/* Footer */
.footer{
background-color: #222;
color: #fff;
font-size: 14px;
bottom: 0;
position: fixed;
left: 0;
right: 0;
text-align: center;
z-index: 999;
}
.footer p {
margin: 10px 0;
font-family: 'Raleway', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.footer .fa-heart{
color: red;
}
.footer .fa-codepen{
color:#fff
}
.footer a {
color: #3c97bf;
text-decoration: none;
margin-right:5px;
}
</style></head>
<body>
</body>
</html>
<div id='navbar' class='home-body-nav' >
<a id="logout" href="javascript:goBack()" ><i class="fa fa-chevron-left" aria-hidden="true"></i> Back</a>
<script>
function goBack() {
window.history.back();
}
</script>
</div>
<div class="container">
<img src="picture/meeting.jpeg">
<img src="picture/1.jpg">
<img src="picture/2.jpg">
<img src="picture/3.jpg">
<img src="picture/4.jpg">
<img src="picture/5.jpg">
<img src="picture/6.jpg">
<img src="picture/A.jpg">
<img src="picture/B.jpg">
<img src="picture/C.jpg">
<img src="picture/D.jpg">
<img src="picture/accomadation.jpg">
<img src="picture/bachelor.jpg">
<img src="picture/F.jpg">
<img src="picture/G.jpg">
<img src="picture/H.jpg">
<img src="picture/classic.jpg">
<img src="picture/club.jpg">
<img src="picture/dining.jpg">
<img src="picture/dulex.jpg">
<img src="picture/events.jpeg">
<img src="picture/family.jpg">
<img src="picture/luxury.jpg">
<img src="picture/meeting.jpeg">
<img src="picture/suits.jpg">
<img src="picture/super.jpg">
<img src="picture/summing.jpg">
<img src="picture/superior.jpg">
<img src="picture/wedding.jpeg">
<img src="picture/well.jpg">
<img src="picture/I.jpg">
<img src="picture/bg.jpg">
</div>
<!-- Footer -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<div class="footer">
<p>
Created with <i class="fa fa-heart"></i> by
<a target="_blank" href="https://www.instagram.com/p/B9I5Vh0BoSmyDLcHITC5syfIIJqWGXgt2WY7Jg0/?igshid=mifm6f61o0a2">VENGADESH KS</a>
Follow me :
<a target="_blank" href="https://www.instagram.com/p/B9I5Vh0BoSmyDLcHITC5syfIIJqWGXgt2WY7Jg0/?igshid=mifm6f61o0a2"><i class="fa fa-instagram"></i></a>
</p>
</div>