-
Notifications
You must be signed in to change notification settings - Fork 4
/
test.html
81 lines (81 loc) · 3.32 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Flexbin — Flexible & Pure CSS Gallery Layout Like Google Images and 500px.com</title>
<meta name="viewport" content="width:device-width, initial-scale=1" />
<link href="flexbin.css" type="text/css" rel="stylesheet" media="all" />
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<div class="flexbin flexbin-margin">
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?man" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?woman" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?design" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?sky" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?tree" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?cat" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?dog" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?office" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?sea" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?green" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?fashion" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?architecture" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?art" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?style" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?animal" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?home" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?flower" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?grass" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?market" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?street" />
</a>
<a href="https://unsplash.com/">
<img src="https://source.unsplash.com/featured/?bird" />
</a>
</div>
</body>
</html>