forked from technext/photogallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
157 lines (142 loc) · 4.82 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Photo Gallery HTML Template</title>
<meta charset="UTF-8">
<meta name="description" content="Photo Gallery HTML Template">
<meta name="keywords" content="endGam,gGaming, magazine, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link href="img/favicon.ico" rel="shortcut icon"/>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/owl.carousel.min.css"/>
<link rel="stylesheet" href="css/animate.css"/>
<!-- Main Stylesheets -->
<link rel="stylesheet" href="css/style.css"/>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Top right elements -->
<div class="spacial-controls">
<div class="search-switch"><img src="img/search-icon.png" alt=""></div>
<div class="nav-switch-warp">
<div class="nav-switch">
<div class="ns-bar"></div>
</div>
</div>
</div>
<!-- Top right elements end -->
<div class="main-warp">
<!-- header section -->
<header class="header-section">
<div class="header-close">
<i class="fa fa-times"></i>
</div>
<div class="header-warp">
<a href="" class="site-logo">
<img src="./img/logo.png" alt="">
</a>
<img src="img/menu-icon.png" alt="" class="menu-icon">
<ul class="main-menu">
<li><a href="./index.html">Home</a></li>
<li class="active"><a href="./gallery.html">Gallery</a></li>
<li><a href="./gallery-single.html">Single gallery</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
<div class="social-links-warp">
<div class="social-links">
<a href=""><i class="fa fa-behance"></i></a>
<a href=""><i class="fa fa-dribbble"></i></a>
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-pinterest"></i></a>
</div>
<div class="social-text">Find us on</div>
</div>
</div>
<div class="copyright">Colorlib 2018 @ All rights reserved</div>
</header>
<!-- header section end -->
<!-- Page section -->
<div class="page-section gallery-page">
<ul class="portfolio-filter">
<li class="filter all active" data-filter="*">All</li>
<li class="filter" data-filter=".photo">Photography</li>
<li class="filter" data-filter=".nature">Nature</li>
<li class="filter" data-filter=".love">Love</li>
<li class="filter" data-filter=".animals">Animals</li>
</ul>
<div class="portfolio-gallery">
<div class="gallery-item animals">
<img src="img/gallery/1.jpg" alt="">
<div class="hover-links">
<a href="" class="site-btn sb-light">Next</a>
</div>
</div>
<div class="gallery-item nature">
<img src="img/gallery/2.jpg" alt="">
<div class="hover-links">
<a href="" class="site-btn sb-light">Next</a>
</div>
</div>
<div class="gallery-item love">
<img src="img/gallery/3.jpg" alt="">
<div class="hover-links">
<a href="" class="site-btn sb-light">Next</a>
</div>
</div>
<div class="gallery-item photo">
<img src="img/gallery/5.jpg" alt="">
<div class="hover-links">
<a href="" class="site-btn sb-light">Next</a>
</div>
</div>
<div class="gallery-item nature">
<img src="img/gallery/6.jpg" alt="">
<div class="hover-links">
<a href="" class="site-btn sb-light">Next</a>
</div>
</div>
<div class="gallery-item photo">
<img src="img/gallery/4.jpg" alt="">
<div class="hover-links">
<a href="" class="site-btn sb-light">Next</a>
</div>
</div>
</div>
</div>
<!-- Page section end-->
</div>
<!-- Search model -->
<div class="search-model">
<div class="h-100 d-flex align-items-center justify-content-center">
<div class="search-close-switch">x</div>
<form class="search-moderl-form">
<input type="text" id="search-input" placeholder="Search here.....">
</form>
</div>
</div>
<!-- Search model end -->
<!--====== Javascripts & Jquery ======-->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.nicescroll.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/circle-progress.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>