-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathduck.html
More file actions
70 lines (65 loc) · 1.96 KB
/
duck.html
File metadata and controls
70 lines (65 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Surprise!</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Single+Day&display=swap');
body {
background-color: #F08080;
color: #F7F7FF;
font-family: 'Single Day', cursive;
text-align: center;
}
.duck {
width: 75vw;
max-width: 360px;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
.fire {
width: 10vw;
max-width: 64px;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
.notice {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
position: absolute;
bottom: 12px;
border: #F7F7FF solid 2px;
padding: 4px;
width: 95%;
display: block;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
margin: 0 auto;
}
.notice p {
margin: 0;
padding: 0;
}
a.link {
color: #F7F7FF;
text-decoration: underline dotted #F7F7FF;
}
</style>
</head>
<body>
<h1>Hello there...</h1>
<img class="duck" src="files/TheInternetDuck.png" alt="The Internet Duck">
<p>The Internet Duck welcomes you.</p>
<p>Rest here weary traveller, for great adventures lie ahead... </p>
<img class="fire" src="files/Save.gif" alt="A warm and cosy campfire">
<div class="notice">
<p>The image of that duck is available under <a class="link" href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a>, by the way.<br>- Oliver K.</p>
</div>
</body>
</html>