-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (69 loc) · 3.06 KB
/
Copy pathindex.html
File metadata and controls
77 lines (69 loc) · 3.06 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
<!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">
<meta name="author" content="Joanne">
<meta name="keywords" content="음료수 성격 테스트">
<meta name="description" content = "음료수 성격 테스트">
<title>음료수 성격 테스트</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="./css/default.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/qna.css">
<link rel="stylesheet" href="./css/animation.css">
<link rel="stylesheet" href="./css/result.css">
<style>
@font-face {
font-family: 'SDSamliphopangche_Outline';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts-20-12@1.0/SDSamliphopangche_Outline.woff') format('woff');
font-weight: normal;
font-style: normal;
}
#main_title {
font-family: 'SDSamliphopangche_Outline';
font-size: 50px;
}
</style>
</head>
<body>
<div class="container">
<section id="main" class="mx-auto my-5 py-5 px-3">
<h1 id="main_title">음료수 성격 테스트!</h1>
<div class="col-lg-6 col-md-8 col-sm-10 col-12 mx-auto">
<img src="./img/real_main.png" alt="mainImage" class="img-fluid">
</div>
<p>
세상에는 다양한 음료들이 있죠... <br>
그렇다면 당신을 음료수들에 비유하면 <br>
어떤 성격일까요?? <br>
'시작하기' 버튼을 눌러 시작해 주세요! <br>
<p style="font-size: 10px;">**대충 만든 것이기 때문에 정확하진 않음**</p>
</p>
<button type="button" class="btn btn-outline-danger mt-3" onclick="js:begin()">시작하기</button>
</section>
<section id="qna">
<div class="status mx-auto mt-5">
<div class="statusBar">
</div>
</div>
<div class="qBox my-5 py-3 mx-auto">
</div>
<div class="answerBox">
</div>
</section>
<section id="result" class="mx-auto my-5 py-5 px-3 container">
<h3 style="text-align: center;">당신은 바로...?<h3>
<div style="text-align: center;" class="resultname">
</div>
<div id="resultImg"class="col-lg-6 col-md-8 col-sm-10 col-12 mx-auto" style="width: 300px; height: 60% ">
</div>
<div class="resultDesc" style="text-align: center; font-size: 20px;">
</div>
</section>
<script src="./js/data.js" charset="utf-8"></script>
<script src="./js/start.js" charset="utf-8"></script>
</div>
</body>
</html>