-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
37 lines (36 loc) · 1.7 KB
/
quiz.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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1.0">
<title>티니핑 맞추기</title>
<link rel="icon" href="src/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="src/favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,400,0,0&icon_names=keyboard_arrow_right,keyboard_arrow_up" />
<link rel="stylesheet" href="css/style.css">
<script defer src="js/quiz.js"></script>
</head>
<body>
<div class="bg-image"></div>
<div class="quiz">
<div class="info">
<h1 id="questionNum">Q0</h1><!--
--><h1 id="score">0/NaN</h1>
<h1 id="hint">◯◯핑</h1>
<img src="teenieping/0.png" class="teenieping" width="400" height="400" oncontextmenu="return false;" draggable="false">
</div>
<div class="buttons">
<input type="text" id="userInput" placeholder="답을 입력하세요">
<button id="submitButton" class="enter-button">
<span class="material-symbols-outlined">keyboard_arrow_up</span>
</button>
<button id="continueButton" class="enter-button">
계속하기
<span class="material-symbols-outlined">keyboard_arrow_right</span>
</button>
</div>
</div>
</body>
</html>