-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html lang="ko">
<head>
<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="DoneDone"/>
<meta property="og:url" content="https://donedone.me"/>
<meta property="og:type" content="webstie"/>
<meta property="og:description" content="우리의 일상을 더 자신 있게"/>
<title>DoneDone</title>
<style>
body {
margin: 0;
}
.container {
width: 100vw;
height: 100vh;
background: #efefef;
}
.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:5em; color: #2065F5; text-shadow: 2px 2px 4px #719fff; text-decoration: none;"
href="https://github.com/TodayDoneDone" target="_blank">DoneDone</a>
</div>
</div>
</body>
</html>