-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
135 lines (113 loc) · 3.79 KB
/
gallery.html
File metadata and controls
135 lines (113 loc) · 3.79 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
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>built w/ care</title>
<link rel="shortcut icon" href="img/m.png"/>
<script src="https://kit.fontawesome.com/222493b4df.js" crossorigin="anonymous"></script>
<!-- For other browser behavior -->
<link rel="stylesheet" href="https://cdns.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<!-- Source Code Pro -->
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap" rel="stylesheet">
<!-- Noto Sans HK -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+HK&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.row {
display: flex;
justify-content: center;
}
.row {
display: -ms-flexbox; /* IE10 */
display: flex;
-ms-flex-wrap: wrap; /* IE10 */
flex-wrap: wrap;
padding: 0 4px;
align-items: center;
}
/* 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: 100%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
-ms-flex: 50%;
flex: 50%;
max-width: 50%;
}
}
@media (max-width: 500px) {
}
/* Responsive layout - makes the two columns stack on top of each
</style>
<body>
<!-- <a href="./parts.html">h4rdw4r3</a> -->
<!-- Header -->
<!-- Photo Grid -->
<div class="row" style="text-align: center;">
<div class="column">
<img src="img/image7.jpg" style="width:100%">
<img src="img/image6.jpg" style="width:100%">
<img src="img/image5.jpg" style="width:100%">
<img src="img/image4.jpg" style="width:100%">
<img src="img/image3.jpg" style="width:100%">
<img src="img/image2.jpg" style="width:100%">
<img src="img/image24.jpg" style="width:100%">
</div>
<div class="column">
<img src="img/image15.jpg" style="width:100%">
<img src="img/image14.jpg" style="width:100%">
<img src="img/image13.jpg" style="width:100%">
<img src="img/image12.jpg" style="width:100%">
<img src="img/image11.jpg" style="width:100%">
<img src="img/image10.jpg" style="width:100%">
<img src="img/image9.jpg" style="width:100%">
<img src="img/image8.jpg" style="width:100%">
<img src="img/image25.jpg" style="width:100%">
</div>
<div class="column">
<img src="img/image28.jpg" style="width:100%">
<img src="img/image23.jpg" style="width:100%">
<img src="img/image21.jpg" style="width:100%">
<img src="img/image20.jpg" style="width:100%">
<img src="img/image19.jpg" style="width:100%">
<img src="img/image18.jpg" style="width:100%">
<img src="img/image17.jpg" style="width:100%">
<img src="img/image16.jpg" style="width:100%">
<img src="img/image1.jpg" style="width:100%">
</div>
<div class="column">
<img src="img1/image1.jpg" style="width:100%">
<img src="img1/image2.jpg" style="width:100%">
<img src="img1/image3.jpg" style="width:100%">
<img src="img1/image4.jpg" style="width:100%">
<img src="img1/image5.jpg" style="width:100%">
<img src="img1/image6.jpg" style="width:100%">
<img src="img1/image7.jpg" style="width:100%">
<img src="img/image27.jpg" style="width:100%">
</div>
</div>
</body>
</html>