-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcq.html
47 lines (41 loc) · 1.65 KB
/
mcq.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
<html>
<head>
<title>multiple-choice quiz form</title>
<link href="resume.css" rel="stylesheet" type="text/css" />
</head>
<body bgcolor=#ffffff>
<header>
<div class="main">
</b><h2><font color="white">Aptitude Test</h2>
</b></b>
Check the answer to each multiple-coice question, and click on the "Send Form" button to submit the information.
<P>1. The word which means "house" is:<BR>
<input type="radio" name="1.The word which means house is" value="maison">maison<BR>
<input type="radio" name="1.The word which means house is" value="quatre">quatre<BR>
<input type="radio" name="1.The word which means house is" value="soleil">soleil<BR>
<input type="radio" name="1.The word which means house is" value="poisson">poisson<BR>
</p>
<P>2. The word which means "fish" is:<BR>
<input type="radio" name="2. The word which means fish is" value="maison">maison<BR>
<input type="radio" name="2. The word which means fish is" value="valise">valise<BR>
<input type="radio" name="2. The word which means fish is" value="soleil">soleil<BR>
<input type="radio" name="2. The word which means fish is" value="poisson">poisson<BR>
</p>
<P>3. The word which means "suitcase" is:<BR>
<input type="radio" name="3. The word which means suitcase is" value="renard">renard<BR>
<input type="radio" name="3. The word which means suitcase is" value="valise">valise<BR>
<input type="radio" name="3. The word which means suitcase is" value="soleil">soleil<BR>
<input type="radio" name="3. The word which means suitcase is" value="poisson">poisson<BR>
</p>
<br>
<br>
<br>
<br>
<input type="submit" value="Send Form">
<input type="reset" value="Clear Form">
</form>
</font>
</div>
</header>
</body>
</html>