-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (81 loc) · 2.42 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
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
h1 {
font-size: 100px;
}
.vertical-center {
min-height: 100%;
/* Fallback for browsers do NOT support vh unit */
min-height: 100vh;
/* These two lines are counted as one :-) */
display: flex;
align-items: center;
}
.container-fluid {
flex-direction: column;
}
#potato {
height: 110px;
}
#potato:hover {
height: 130px;
margin-top: -20px;
}
</style>
<title>root</title>
</head>
<body>
<div class="vertical-center justify-content-center container-fluid pb-md-5">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-6">
<div class="col text-center">
<h1>P</h1>
</div>
<div class="col text-center">
<h1>O</h1>
</div>
<div class="col text-center">
<h1>T</h1>
</div>
<div class="col text-center">
<h1>A</h1>
</div>
<div class="col text-center">
<h1>T</h1>
</div>
<div class="col text-center">
<h1>O</h1>
</div>
<div class="col text-center">
<h1>P</h1>
</div>
<div class="col text-center">
<h1>O</h1>
</div>
<div class="col text-center">
<h1>T</h1>
</div>
<div class="col text-center">
<h1>A</h1>
</div>
<div class="col text-center">
<h1>T</h1>
</div>
<div class="col text-center">
<h1>O</h1>
</div>
</div>
<div class="row">
<a href="https://idahopotatomuseum.com/potato-facts/">
<img src="potato_cropped.png" id="potato">
</a>
</div>
</div>
</body>
</html>