-
Notifications
You must be signed in to change notification settings - Fork 0
/
page5.html
58 lines (54 loc) · 1.75 KB
/
page5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A site that lets you find your happiness (ha-play-ness, really)!"
/>
<title>Yep, the quest is still on</title>
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.tailwindcss.com"></script>
<link
href="https://unpkg.com/tailwindcss@^2.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
yellow: "#FBC638",
newblue: "#518AAE",
smi1: "#460AC4",
smi1hover: "#39128B",
},
},
},
};
</script>
</head>
<body class="h-screen w-screen flex items-center justify-center">
<div class="block m-auto">
<h3 class="mx-4" style="text-align: center; margin-top: 0.1rem">
Yep. Hope I made you smile a little?
</h3>
<img
style="height: auto; width: 100%; border-radius: 1.5rem; padding: 20px"
src="resources/closure.jpg"
/>
<button
id="theFinalButton"
onmouseover="this.style.boxShadow='6px 6px 0 #ffffff'"
onmouseleave="this.style.boxShadow='6px 6px 0 #518AAE'"
onclick="location.href='https\://bit.ly/stfh-page6'"
style="box-shadow: 6px 6px 0 #518aae"
class="font-bold text-xl w-2/3 block mx-auto tracking-tighter border-solid border-2 border-newblue pt-2 pb-2 m-auto bg-white hover:bg-newblue text-newblue hover:text-white"
>
Not really, bye!
</button>
</div>
</body>
</html>