-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-01.html
95 lines (89 loc) · 3.55 KB
/
test-01.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
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
<html lang="en">
<!--
https://github.com/Kozea/WeasyPrint/issues/2163
-->
<head>
<title>Attempt Response</title>
<!--
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
-->
<link href="bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="card my-3">
<div class="card-header bg-gradient-light text-dark p-3 d-flex align-items-center justify-content-between">
<div class="card-title text-bold mb-0 d-flex">
<div class="me-1">3.</div>
<div>
<div class="question">
Select the following that does not affect rate of evaporation?
</div>
<div class="d-flex">
<div class="bg-primary text-xxs text-white px-2 py-1 rounded text-bolder me-1">
Subject: Science
</div>
<div class="bg-primary text-xxs text-white px-2 py-1 rounded text-bolder">
Multiple choice
</div>
</div>
</div>
</div>
</div>
<div class="card-body p-3">
<div class="answer-preview">
<div class="preview-multiple-choice blockquote ps-2 mb-0 py-2 fs-6">
<div class="form-check d-flex align-items-center me-2">
<input class="form-check-input"
disabled=""
id="input-iwslt1"
type="radio"
value="" name="a" checked>
<label class="custom-control-label mb-0 ms-1 mt-1 text-" for="input-iwslt1">
Temperature
</label>
</div>
<div class="form-check d-flex align-items-center me-2">
<input class="form-check-input"
disabled=""
id="input-f84gw3"
type="radio"
value="" name="a">
<label class="custom-control-label mb-0 ms-1 mt-1 text-" for="input-f84gw3">
Surface area
</label>
</div>
<div class="form-check d-flex align-items-center me-2">
<input class="form-check-input ng-untouched ng-pristine"
disabled=""
id="input-zy80v2"
type="radio"
value="">
<label class="custom-control-label mb-0 ms-1 mt-1 text-" for="input-zy80v2">
Wind speed
</label>
</div>
<div class="form-check d-flex align-items-center me-2">
<input class="form-check-input"
disabled=""
type="radio">
<label class="custom-control-label mb-0 ms-1 mt-1 text-success" for="input-ckk0hk">
Insoluble heavy impurities
</label>
</div>
</div>
</div>
</div>
<div class="card-footer d-flex justify-content-between align-items-center bg-light py-2">
<div class="d-flex">
<div class="bg-dark text-xxs text-white px-2 py-1 rounded text-bolder me-1"> Time Spent: 8 sec.</div>
<div class="bg-dark text-xxs text-white px-2 py-1 rounded text-bolder me-1"> 1 Attempt</div>
<div class="bg-dark text-xxs text-white px-2 py-1 rounded text-bolder"> Timeout</div>
</div>
<div>
</div>
</div>
</div>
</div>
</body>
</html>