-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsandbox.html
More file actions
66 lines (57 loc) · 1.57 KB
/
sandbox.html
File metadata and controls
66 lines (57 loc) · 1.57 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
<!DOCTYPE html>
<!--suppress CheckImageSize -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sandbox</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/global.css">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Shantell+Sans:wght,BNCE@400..700,-100..100&display=swap"
rel="stylesheet">
<style>
body {
max-width: 80rem; /* 1280px */
background-color: yellow;
color: #000000;
}
nav, h1, p{
text-align: center;
}
nav {
padding-top: 1rem;
}
h1 {
font-size: 3rem;
font-weight: 700;
animation: infinite 1s alternate title-bounce linear;
color: blue;
}
@keyframes title-bounce {
0% {
font-variation-settings: "wght" 700, "BNCE" -100;
}
50% {
font-variation-settings: "wght" 700, "BNCE" 0;
}
100% {
font-variation-settings: "wght" 700, "BNCE" 100;
}
}
</style>
</head>
<body>
<nav>
<a href="/"><img src="img/button-back.gif" alt=""></a>
</nav>
<h1>Sandbox</h1>
<p>This page is under construction. I'll put some of my web experiments here in the future.</p>
<center>
<img src="img/decoration-under-construction.gif" alt="This site is under construction.">
</center>
</body>
</html>