-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (82 loc) · 3.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
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
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<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">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<title>아기사자 MBTI 검사</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<section id="main" class="mx-auto my-5 py-5 px-3">
<h1>아기사자 MBTI 테스트</h1>
<div class="col-lg-6 col-md-8 col-sm-10 col-12 mx-auto">
<img src="./img/ESFP.png" alt="mainImage" class="img-fluid" />
</div>
<p class="py-3 mt-3">
나는 어떤 아기사자일까요? <br />
MBTI 기반으로 알아보는 아기사자 테스트 <br />
아래 시작하기 버튼을 눌러 시작해 주세요
</p>
<button
type="button"
class="btn btn-outline-danger mt-3"
onclick="start()"
>
시작하기
</button>
<p class="pt-5">made by chaewoon</p>
</section>
<section id="qna" >
<div class="progress mx-auto mt-5">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="0"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
<div class="qBox my-5 py-3 mx-auto">
<h2 id="title" class="questionMain p-3">문제</h2>
<input id="type" type="hidden" value="EI" />
<div class="button-warp">
<button id="A" type="button" class="my-2 mx-3">Primary</button>
<button id="B" type="button" class="my-2 mx-3">Primary</button>
</div>
</div>
</section>
<section id="result" class="mx-auto my-5 py-5 px-3">
<h1>당신의 결과는?!</h1>
<div class="subtitle">설명</div>
<div class="img my-3 col-lg-6 col-md-8 col-sm-10 col-12 mx-auto">
<img class="img-fluid" id="result_img" src="/img/ENFJ.png" />
</div>
<div class="explain"></div>
<button
type="button"
id="shareURL"
class="share mt-3 py-2 px-3"
onclick="shareURL()"
>
링크 복사하기
</button>
<button
type="button"
id="kakao"
class="share mt-3 py-2 px-3"
onclick="shareMessage()"
>
카카오톡 공유하기
</button>
</section>
</div>
<script src="./index.js"></script>
<script src="./data.js"></script>
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
</body>
</html>