-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
58 lines (45 loc) · 2.01 KB
/
form.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
<html lang="en">
<head>
<title>Form</title>
</style>
</head>
<body >
<div style="font-size:20px margin=20 color=white">
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" ><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" ><br><br>
<!--<input type="submit" value="Submit"><br/>-->
<label for="Gender">Gender</label><br>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label><br/><br/>
<label>Email</label><br/>
<input type="email" ><br/>
<br/>
<label>College Name</label><br/>
<input type="text"/>
<br/><br/>
<label>How many point you will give to this Website ?</label><br/>
<input type="radio" id="male" name="gender" value="1">
<label for="male">1</label><br>
<input type="radio" id="male" name="gender" value="2">
<label for="male">2</label><br>
<input type="radio" id="male" name="gender" value="3">
<label for="male">3</label><br>
<input type="radio" id="male" name="gender" value="4">
<label for="male">4</label><br>
<input type="radio" id="male" name="gender" value="5">
<label for="male">5</label><br>
<label>Do you have any suggestion how could it be better?</label><br/>
<textarea name="message" rows="10" cols="30">WRITE SOME SUGGESTION.... </textarea>
<br><br>
<input type="submit" value="Submit"><br/>
</form>
</div>
</body>
</html>