-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (40 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="./assets/icon.ico"/>
<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=Fredoka+One&display=swap" rel="stylesheet">
<meta property="og:title" content="carrot.style" />
<meta property="og:url" content="https://carrot.style/" />
<meta property="og:type" content="webstie" />
<meta property="og:description" content="Your URL with carrot-style. 😎" />
<title>carrot.style</title>
<style>
body {
margin: 0;
}
.container {
width: 100vw;
height: 100vh;
background: #ff9742;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class="container">
<div class="center">
<a style="font-family: 'Fredoka One', cursive; font-size:3em; color: white; text-shadow: 2px 2px 4px lightslategray;"
href="https://github.com/carrot-style" target="_blank">carrot.style</a>
</div>
</div>
</body>
</html>