-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 2.54 KB
/
index.html
File metadata and controls
67 lines (64 loc) · 2.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="general">
<div class="header">
<h3 class="question_head"></h3>
</div>
<div class="variants">
<div class="quiz_variants">
<form name="myForm">
<div class="green_tab">
<input type="radio" id="f-option" name="answer" class="one_var" data-true="true">
<label for="f-option"><span class="ans1" id="ans">A</span></label>
<div class="check"></div>
</div>
<div class="green_tab">
<input type="radio" id="s-option" name="answer" class="two_var" data-true="true">
<label for="s-option"><span class="ans2" id="ans" >B</span></label>
<div class="check"></div>
</div>
<div class="green_tab">
<input type="radio" id="t-option" name="answer" class="three_var" data-true="true">
<label for="t-option"><span class="ans3" id="ans" >C</span></label>
<div class="check"></div>
</div>
<div class="green_tab">
<input type="radio" id="p-option" name="answer" class="for_var" data-true="true">
<label for="p-option"><span class="ans4" id="ans" >D</span></label>
<div class="check"></div>
</div>
</form>
</div>
</div>
<div class="count_next">
<p class="count">Total 25</p>
<button class="next">Next</button>
</div>
<div class="progres_bar"></div>
</div>
<div class="response">
<h3>Result</h3>
<p class="right"></p>
<p class="procent"></p>
<p class="spent_time"></p>
</div>
<div class="time_title">
<b class="time"></b>
</div>
<div class="want">
<p class="text_want">Do you want to see your results?</p>
<p class="asks">
<button class="yes">Yes</button>
<button class="no">No</button>
</p>
</div>
<div class="responses">
</div>
</body>
<script src="script.js"></script>
</html>