-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathquestions.html
44 lines (40 loc) · 2.01 KB
/
questions.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
<!DOCTYPE html>
<html lang="ko">
<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">
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="내숨캐" />
<meta property="og:title" content="내 안에 숨어있는 직업캐 찾기!" />
<meta property="og:description" content="누구나 찰떡인 직업이 있어요! 내 안에 숨어있는 직업캐를 찾아보세요!" />
<meta property="og:image" content="/images/thumbnail.jpg" />
<meta property="og:url" content="https://prismatic-monstera-4c9d6a.netlify.app/" />
<!-- Twitter Cards -->
<meta property="twitter:card" content="summary" />
<meta property="twitter:site" content="내숨캐" />
<meta property="twitter:title" content="내 안에 숨어있는 직업캐 찾기!" />
<meta property="twitter:description" content="누구나 찰떡인 직업이 있어요! 내 안에 숨어있는 직업캐를 찾아보세요!" />
<meta property="twitter:image" content="/images/thumbnail.jpg" />
<meta property="twitter:url" content="https://prismatic-monstera-4c9d6a.netlify.app/" />
<title>내 안에 숨어있는 직업캐 찾기!</title>
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/reset.min.css">
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable-dynamic-subset.css" />
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/questions.css">
<script type="module" defer src="./js/questions.js"></script>
</head>
<body>
<div class="progress">
<div class="value"></div>
</div>
<div class="question-box">
<div class="number"></div>
<div class="question"></div>
<div class="btn btn-gray choice choice1"></div>
<div class="btn btn-gray choice choice2"></div>
</div>
</body>
</html>