forked from seungeunn/webgrus_team7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSeolmoon.html
41 lines (37 loc) · 1.54 KB
/
Seolmoon.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Q1</title>
<link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Jua', sans-serif;
}
</style>
<link rel="stylesheet" href="Seolmoon.css">
</head>
<body>
<div class="main_box">
<div class="top_box">
<p>MBTI별 추천 직업</p>
</div>
<div class="question_box"> Q1. 토요일 아침에 일어난 당신! 영화를 보려고 한다. 어떤 영
화?</div>
<form>
<div class="answer_box">
<script>
var check = false;
var page = 1;
</script>
<input class="answer" type="button" value="A1. 우주 판타지를 담은 로맨스 영화" onclick='localStorage.setItem("question1", 1);check = true;'>
<input class="answer" type = "button" value="A2. 일상의 로맨스를 담은 영화" onclick='localStorage.setItem("question1", 2);check = true;'>
<script src="./Seolmoon.js"></script>
<div class="button_box1">
<input class="next_button" type="button" value="Next" onclick='if(check != true){alert("please select the option");}else{location.href=`Seolmoon${page + 1}.html`}'>
</div>
</div>
</form>
</div>
</body>