-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="exit-btn">
<button class ="exit-btn" onclick="exitQuiz()">나가기</button>
</div>
<div class="app">
<h1>물체와 운동2</h1>
<div class="quiz">
<h2 id="question">대충 문제 있는 곳</h2>
<p class="note">* (Ctrl키 + (+/-)키 또는 Ctrl키 + 마우스 휠로 확대 및 축소 가능) </p>
<div id="image-container"></div>
<div id="answer-buttons">
<button class="btn">답 1</button>
<button class="btn">답 2</button>
<button class="btn">답 3</button>
<button class="btn">답 4</button>
<button class="btn">답 5</button>
</div>
<button id="next-btn">다음</button>
<button id="show-btn">정답 보기</button>
</div>
</div>
<script src="script.js"></script>
<script>
function exitQuiz() {
if (confirm("정말로 나가시겠습니까?")) {
window.location.href = "https://jewyang.github.io/links_connected/homepage.html#"; // 나가기
}
}
</script>
</body>
</html>