-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidex.html
36 lines (33 loc) · 1.23 KB
/
idex.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<div class="bg-container">
<div class="card" id="card">
<h2 class="question" id="quetionId">question Test</h2>
<ul class="un-ordered">
<li class="list-style">
<input type="radio" id="a" name="options" class="options" />
<label for="a" id="aText">question</label>
</li>
<li class="list-style">
<input type="radio" id="b" name="options" class="options" />
<label for="b" id="bText">question</label>
</li>
<li class="list-style">
<input type="radio" id="c" name="options" class="options" />
<label for="c" id="cText">question</label>
</li>
<li class="list-style">
<input type="radio" id="d" name="options" class="options" />
<label for="d" id="dText">question</label>
</li>
</ul>
<button class="button" id="submitId">submit</button>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>