-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtry.html
More file actions
69 lines (46 loc) · 1.58 KB
/
Copy pathtry.html
File metadata and controls
69 lines (46 loc) · 1.58 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
<!doctype html>
<html>
<head>
<title>image </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style>
*{
padding: 0px;
margin: 0 auto;
}
.images {
/* Prevent vertical gaps */
line-height: 0;
-webkit-column-count: 5;
-webkit-column-gap: 0px;
-moz-column-count: 5;
-moz-column-gap: 0px;
column-count: 5;
column-gap: 0px;
}
.images img {
/* Just in case there are inline attributes */
width: 100% !important;
height: auto !important;
}
</style>
</head>
<body>
<div class="images">
<img src="images/anders-jilden-41692.jpg" alt="lonely-road" width="300" >
<img src="images/daniel-tseng-252379.jpg" alt="kyoto" width="300" >
<img src="images/hans-vivek-176134.jpg" alt="the band" width="300" >
<img src="images/kosal-ley-186072.jpg" alt="meditation" width="300">
<img src="images/luke-chesser-48.jpg" alt="cafe-2" width="300">
<img src="images/natalie-collins-57855.jpg" alt="latte" width="300">
<img src="images/nurhadi-cahyono-234464.jpg" alt="nature-waterfall" width="300">
<img src="images/redd-angelo-236775.jpg" alt="japan" width="300">
<img src="images/vision-webagency-3083.jpg" alt="autumn" width="300">
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.js"
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>