-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (93 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
97 lines (93 loc) · 2.19 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home work 14</title>
<style>
*{
margin:0;
padding: 0;
font-size: 16px;
font-family: Arial;
box-sizing: border-box;
}
div.test-block{
margin: 20px 50px;
}
div.test-block p{
text-align: center;
margin-bottom: 40px;
}
form > ol{
padding-left: 25px;
margin-bottom: 25px;
}
form > ol > li {
margin-bottom: 25px;
}
form > ol > li > ul {
margin-top: 15px;
}
form > ol > li > ul > li{
list-style: none;
padding: 5px 0;
}
form input{
background-color: lightblue;
}
form input[type='submit']{
padding: 7px;
}
</style>
</head>
<body>
<script src="src/main.js"></script>
<!-- <div class="test-block">
<p>Тест по програмированию</p>
<form>
<ol>
<li>Вопрос номер 1
<ul>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №1</label>
</li>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №2</label>
</li>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №3</label>
</li>
</ul>
</li>
<li>Вопрос номер 2
<ul>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №1</label>
</li>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №2</label>
</li>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №3</label>
</li>
</ul>
</li>
<li>Вопрос номер 3
<ul>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №1</label>
</li>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №2</label>
</li>
<li>
<label><input type="checkbox" name="anwer"> вариант ответа №3</label>
</li>
</ul>
</li>
</ol>
<p> <input type="submit" name="submit" value="Проверить мои результаты"></p>
</form>
</div> -->
</body>
</html>