-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 1.42 KB
/
index.html
File metadata and controls
68 lines (63 loc) · 1.42 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/NoMoreDeepfake.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap"
/>
<title>No More Deepfake</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
<style>
.hcontainer {
width: 100%;
display: flex;
justify-content: center;
}
.vcontainer {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
body{
max-height: 100%;
overflow: hidden;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.nsk-bold {
font-family: "Noto Sans KR", sans-serif;
font-weight: 700;
}
.nsk-semibold {
font-family: "Noto Sans KR", sans-serif;
font-weight: 600;
}
.nsk-extrabold {
font-family: "Noto Sans KR", sans-serif;
font-weight: 800;
}
.nsk-regular {
font-family: "Noto Sans KR", sans-serif;
font-weight: 400;
}
.nsk-medium {
font-family: "Noto Sans KR", sans-serif;
font-weight: 500;
}
</style>