-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestionare.html
More file actions
37 lines (30 loc) · 1.08 KB
/
questionare.html
File metadata and controls
37 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>Questionaire Form</title>
</head>
<body>
<center><h1>Questionare Form</h1></center>
<link rel="stylesheet" type="text/css" href="data.css">
<div style="text-align:center">
<img src="fruits.jpg" alt="fruits"
style="width: 150px; height: 150px">
<form action="index.php" name="my form" method="POST" >
First Name:<input type="text" name="First Name"><br>
Last Name:<input type="text" name="Last Name"><br>
Are you:<br>
<input type="radio" name="sex" value="Male" >Male<br>
<input type="radio" name="sex" value="Female" >Female<br>
I like:<br>
<input type="checkbox" name="Apple" value="Apple">Apple<br>
<input type="checkbox" name="Banana" value="Banana">Banana<br>
<input type="checkbox" name="Oranges" value="Apple">Oranges<br>
what is your favourite fruit?<br>
<select name="favourite">
<option value="Apple" selected="selected">Apple</option>
<option value="Oranges" selected="selected">Oranges</option>
<option value="Banana" selected="selected">Banana</option>
<input type="submit" value="submit the Questionaire">
</form>
</body>
</html>