-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut8.html
55 lines (53 loc) · 1.51 KB
/
tut8.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
</head>
<body>
<h2>This is scholarship form</h2>
<form action="backend.php">
<div>
Name:<input type="text">
</div>
<br>
<div>
Role:<input type="text">
</div>
<br>
<div>
Are you eligible?:<input type="checkbox" name="eligiblity">
</div>
<br>
<div>
Date:<input type="Date">
</div>
<br>
<div>
Gender:Male<input type="radio" name="myGender"> Female<input type="radio" name="myGender">
</div>
<br>
write about yourself?:<br><textarea name="myText" cols="10" rows="10"></textarea>
<!-- instead of input mytext we should use the textarea due to alarge area -->
<br>
<div>
<label for="scholarship">scholarship</label>
<select name="myscholarship" id="scholarship">
<option value="Pre">Pre-matric</option>
<option value="Post">Post-matric</option>
</select>
<br>
<div>
<input type="submit" value="submit now">
</div>
<br>
<br>
<div>
Reset now:<input type="Reset">
</div>
</div>
</form>
</body>
</html>