-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththanks.html
70 lines (68 loc) · 2.24 KB
/
thanks.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
<!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">
<title>Treasure says thank you!</title>
<!-- normally I hate to use internal stylesheets, but here I have no other option-->
<style>
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* base styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Jost', 'Segoe UI';
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #1f2028;
color: #fff;
}
main {
background-color: #2e3039;
width: 90%;
max-width: 500px;
text-align: center;
padding: 1em;
border-radius: 12px;
}
h1 {
margin: 0.7em 0;
}
p {
font-size: x-large;
}
button {
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
font-size: 18px;
color: white;
padding: 0.3em 0.5em;
margin: 1em auto;
border: 2px solid white;
border-radius: 8px;
}
button:hover {
background-color: white;
color: #1f2028;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<main>
<h1>Thanks for sending me a message!</h1>
<p>You can't see me, but I'm doing my victory dance. I want to let you know that your message has been delivered, and I can't wait to hear you out. You can expect to recieve a response from me even before you count 5 mississippis. :)</p>
<a href="https://cybergenie.netlify.app/projects"><button><img src="/src/assets/images/arrow-left.svg" alt="">Go back to projects</button></a>
</main>
</body>
</html>