-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
33 lines (27 loc) · 1.32 KB
/
main.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
<!Doctype HTML>
<html>
<head>
<link rel="icon" type="image/jpg" href="bg.jpg">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Тест на цундере</title>
<link href="https://fonts.googleapis.com/css?family=Macondo" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="heading"><h1 id="text">Тест на цундере<h1></div>
<div id="quiz">
<div id="question"></div>
<label class="option"><input type="radio" name="option" value="1" /><span id="option1"></span></label>
<label class="option"><input type="radio" name="option" value="2" /><span id="option2"></span></label>
<label class="option"><input type="radio" name="option" value="3" /><span id="option3"></span></label>
<label class="option"><input type="radio" name="option" value="4" /><span id="option4"></span></label>
<div id="buttons">
<button id="next" onclick="nextques();">Следующий вопрос</button>
<button id="quit" onclick="quit();">Завершить тестирование</button>
</div>
</div>
<div id="result" style="display:none"></div>
<script type="text/javascript" src="questions.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>