-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (75 loc) · 3.89 KB
/
index.html
File metadata and controls
81 lines (75 loc) · 3.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="eunhye">
<meta name="keywords" content="전략적 팀 전투 플레이 유형 테스트">
<meta name="description" content="전략적 팀 전투 플레이 유형 테스트">
<!-- sns share -->
<meta property="og:url" content="https://tft-test.netlify.app"/>
<meta property="og:title" content="전략적 팀 전투 플레이 유형 테스트"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="img/share.png"/>
<meta property="og:description" content="나와 가장 잘 어울리는 나만의 전략가 찾기"/>
<!--favicon -->
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="img/favicon.ico">
<title>전략적 팀 전투 플레이 유형 테스트</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<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=Jua&display=swap" rel="stylesheet">
<link href="./css/default.css" rel="stylesheet">
<link href="./css/main.css" rel="stylesheet">
<link href="./css/qna.css" rel="stylesheet">
<link href="./css/result.css" rel="stylesheet">
<link href="./css/animation.css" rel="stylesheet">
<!-- kakao share API -->
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
<script>
Kakao.init('8f3cfab1bb31a61484cfede4d85fc193');
Kakao.isInitialized();
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-78MWNWCQSX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-78MWNWCQSX');
</script>
</head>
<body>
<div class="container">
<section id="main" class="mx-auto my-5 py-5 px-3">
<h1>전략적 팀 전투 플레이 유형 테스트</h1>
<div class="col-lg-6 col-md-8 col-sm-10 col-12 mx-auto">
<img src="./img/main.png" alt="mainImage" class="img-fluid">
</div>
<p>
나와 잘 어울리는 나만의 전략가 찾기!<br>
시작 버튼을 눌러 시작해주세요!
</p>
<button type="button" class="btn btn-outline-primary mt-3" onclick="begin()">시작하기</button>
</section>
<section id="qna">
<div class="status mx-auto mt-5">
<div class="statusBar"></div>
</div>
<div class="qBox mx-auto my-5 py-3"></div>
<div class="aBox"></div>
</section>
<section id="result" class="mx-auto my-5 py-5 px-3">
<h1>당신의 결과는?!</h1>
<div id="resultName"></div>
<div id="resultImg" class="col-lg-6 col-md-8 col-sm-10 col-12 mx-auto my-3"></div>
<div id="resultDesc"></div>
<button type="button" class="kakao mt-3 px-3 py-3" onclick="kakaoShare()">공유하기</button>
</section>
</div>
<script src="./js/data.js" charset="utf-8"></script>
<script src="./js/start.js" charset="utf-8"></script>
<script src="./js/share.js" charset="utf-8"></script>
</body>
</html>