-
Notifications
You must be signed in to change notification settings - Fork 1
/
memories.html
114 lines (101 loc) · 2.58 KB
/
memories.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
<!DOCTYPE html>
<html>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
background-color: orange;
}
.header {
text-align: center;
padding: 32px;
}
.row {
display: -ms-flexbox; /* IE10 */
display: flex;
-ms-flex-wrap: wrap; /* IE10 */
flex-wrap: wrap;
padding: 0 4px;
}
/* Create four equal columns that sits next to each other */
.column {
-ms-flex: 25%; /* IE10 */
flex: 25%;
max-width: 25%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
width: 200%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
-ms-flex: 200%;
flex: 200%;
max-width: 200%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
-ms-flex: 200%;
flex: 200%;
max-width: 200%;
}
}
</style>
<body>
<!-- Header -->
<div class="header">
<h1> MEMORIES FOREVER !! </h1>
</div>
<!-- Photo Grid -->
<div class="row">
<div class="column">
<img src="auto1.jpeg" style="width:100%">
<img src="a1.jpg" style="width:100%">
<img src="a2.jpg" style="width:100%">
<img src="a3.jpg" style="width:100%">
<img src="auto2.jpeg" style="width:100%">
<img src="a4.jpg" style="width:100%">
<img src="a5.jpg" style="width:100%">
</div>
<div class="column">
<img src="a6.jpg" style="width:100%">
<img src="auto3.jpg" style="width:100%">
<img src="a7.jpeg" style="width:100%">
<img src="a8.jpg" style="width:100%">
<img src="auto4.jpg" style="width:100%">
<img src="a9.jpg" style="width:100%">
<img src="a23.jpeg" style="width:100%">
</div>
<div class="column">
<img src="a10.jpg" style="width:100%">
<img src="a11.jpg" style="width:100%">
<img src="a12.jpg" style="width:100%">
<img src="a13.jpg" style="width:100%">
<img src="a14.jpg" style="width:100%">
<img src="a15.jpg" style="width:100%">
<img src="a16.jpg" style="width:100%">
<img src="a26.jpg" style="width:100%">
<img src="a28.jpg" style="width:100%">
</div>
<div class="column">
<img src="a17.jpg" style="width:100%">
<img src="a18.jpg" style="width:100%">
<img src="a19.jpg" style="width:100%">
<img src="a20.jpg" style="width:100%">
<img src="a21.jpg" style="width:100%">
<img src="a22.jpg" style="width:100%">
<img src="a24.jpg" style="width:100%">
<img src="a25.jpg" style="width:100%">
<img src="a27.jpg" style="width:100%">
</div>
</div>
</body>
</html>