-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (65 loc) · 3.89 KB
/
index.html
File metadata and controls
130 lines (65 loc) · 3.89 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<title>Image Gallary</title>
</head>
<body>
<div class="container">
<h2>IMAGE GALLARY</h2>
<div class="menu">
<a href="#" class="btn" data-filter="all">All</a>
<a href="#" class="btn" data-filter="mobile">Mobile</a>
<a href="#" class="btn" data-filter="laptop">Laptop</a>
<a href="#" class="btn" data-filter="pc">PC</a>
</div>
<div class="box" id="store-items">
<!--One line-->
<div class="store-item mobile">
<img src="https://dl.dropbox.com/s/uqo2new8s8xsr90/photo-1501162946741-4960f990fdf4.jpeg?dl=0" class="store-img">
</div>
<div class="store-item laptop">
<img src="https://dl.dropbox.com/s/780436jqnyz4auz/photo-1511385348-a52b4a160dc2.jpeg?dl=0" class="store-img">
</div>
<div class="store-item pc">
<img src="https://dl.dropbox.com/s/r7n4vjdi55rxctl/photo-1598550476439-6847785fcea6.jpeg?dl=0" class="store-img">
</div>
<!--One line end-->
<!--2nd line-->
<div class="store-item mobile">
<img src="https://dl.dropbox.com/s/o1cr380t250lza3/photo-1586953208448-b95a79798f07.jpeg?dl=0" class="store-img">
</div>
<!--2nd line end-->
<div class="store-item laptop">
<img src="https://dl.dropbox.com/s/w02vkspbinupxw9/photo-1593642702821-c8da6771f0c6.jpeg?dl=0" class="store-img">
</div>
<div class="store-item pc">
<img src="https://dl.dropbox.com/s/td1f3lgx7egafa1/photo-1597049176495-60ca7846c7ba.jpeg?dl=0" class="store-img">
</div>
<div class="store-item mobile">
<img src="https://dl.dropbox.com/s/sl4kxd64kc0aaim/photo-1567581935884-3349723552ca.jpeg?dl=0" class="store-img">
</div>
<div class="store-item pc">
<img src="https://dl.dropbox.com/s/p09ronf9m96r02b/photo-1598057076865-c67fefd248d3.jpeg?dl=0" class="store-img">
</div>
<div class="store-item mobile">
<img src="https://dl.dropbox.com/s/6x9xn3s2gcsq9wm/photo-1513908957990-b2790723edbf.jpeg?dl=0" class="store-img">
</div>
<div class="store-item pc">
<img src="https://dl.dropbox.com/s/g90s7m12juwfu5x/photo-1603481546238-487240415921.jpeg?dl=0" class="store-img">
</div>
<div class="store-item laptop">
<img src="https://dl.dropbox.com/s/yld5hay8i5syaft/photo-1498050108023-c5249f4df085.jpeg?dl=0" class="store-img">
</div>
<div class="store-item laptop">
<img src="https://dl.dropbox.com/s/sbku3m1cf4ac9mz/photo-1522199755839-a2bacb67c546.jpeg?dl=0" class="store-img">
</div>
<div class="store-item laptop">
<img src="https://dl.dropbox.com/s/z6jbbj7wx80kh66/photo-1544006659-f0b21884ce1d.jpeg?dl=0" class="store-img">
</div>
</div>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>