-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquiz.html
More file actions
26 lines (26 loc) · 1.27 KB
/
quiz.html
File metadata and controls
26 lines (26 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/buttons.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:400,700" rel="stylesheet">
</head>
<body>
<h1 id="title">Ботать матстат</h1><hr>
<h2 id="question-number">Номер вопроса</h2>
<div class="center" id="question-text">Если вопросы долго не загружаются, попробуйте зайти через другой браузер</div>
<hr>
<h2>Варианты ответа</h2>
<div id="options" class="container"></div>
<hr>
<div class="container" style="display: block;">
<button class="button" onclick="prev_question();" style="margin-top: 3%;">Назад</button>
<button class="button" onclick="next_question();" style="margin-top: 3%; background-color: grey;cursor:not-allowed;" id="next-button" disabled>Дальше</button>
</div>
<script src="scripts/themes.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script src="scripts/questions_link.js"></script>
<script src="scripts/quiz.js" type="application/javascript"></script>
</body>
</html>