-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (67 loc) · 1.63 KB
/
index.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
<!DOCTYPE html>
<html lang=en-us>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset=utf-8>
<title>Foxes are cute!</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
}
.header {
text-align: center;
padding: 32px;
}
.column {
float: left;
width: 50%;
padding: 10px;
}
.column img {
margin-top: 12px;
}
.row:after {
content: "";
display: table;
clear: both;
}
</style>
</head>
<body>
<!-- Photo Grid -->
<div class="row">
<div class="column">
<a href="https://flic.kr/p/ffHQJf">
<img src="images/fox1.jpeg" style="width:100%">
</a>
<a href="https://flic.kr/p/s1Eddp">
<img src="images/fox5.jpeg" style="width:100%">
</a>
<a href="https://botsin.space/@toomanyfoxes/112506061851039697">
<img src="images/fox8.webp" style="width:100%">
</a>
<a href="https://flic.kr/p/1112ossz9W">
<img src="images/fox3.jpeg" style="width:100%">
</a>
</div>
<div class="column">
<a href="https://unsplash.com/photos/LyTrhNVhICY/">
<img src="images/fox2.jpeg" style="width:100%">
</a>
<a href="https://flic.kr/p/2hZ8ZXP">
<img src="images/fox6.jpeg" style="width:100%">
</a>
<a href="https://flic.kr/p/111Sd1xXu">
<img src="images/fox4.jpeg" style="width:100%">
</a>
<a href="https://commons.wikimedia.org/wiki/File:Alopex_lagopus_IMG_9019.JPG">
<img src="images/fox7.jpeg" style="width:100%">
</a>
</div>
</div>
</body>
</html>