-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddques.html
executable file
·61 lines (58 loc) · 2.22 KB
/
addques.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body>
<form>
<table width="600" border="1" cellspacing="3" cellpadding="3">
<tr><td>Select Test Topic</td>
<td colspan="2"><select name="select" id="select">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select></td>
<div id="testnames_div">
<td colspan="2"><select name="select" id="select" disabled >
<option value="#">Select a Category</option>
</select>
</td>
</div>
</tr>
<tr><td>Type The Question</td>
<td colspan="4"><textarea name="textarea" id="textarea" cols="79" rows="5"></textarea></td>
</tr>
<tr><td>Type The Options For The Above Question</td>
<td><input type="text" name="textfield" id="textfield"></td>
<td><input type="text" name="textfield" id="textfield"></td>
<td><input type="text" name="textfield" id="textfield"></td>
<td><input type="text" name="textfield" id="textfield"></td>
</tr>
<tr><td>Choose The Correct Answer</td>
<td>
<label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_0">
Radio</label></td>
<td><label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_1">
Radio</label></td>
<td><label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_2">
Radio</label></td>
<td><label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_3">
Radio</label></td>
</tr>
<tr align="right"><td>Difficulty Level</td>
<td colspan="4"><input type="text" name="textfield" id="textfield"></tr>
<tr align="right"><td>Marks</td>
<td colspan="4"><input type="text" name="textfield" id="textfield"></tr>
<tr align="right"><td></td>
<td colspan="4"><input name="" type="submit" value="Save"></td>
</tr>
</table>
</form>
</body>
</html>