-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.html
48 lines (42 loc) · 1.37 KB
/
task.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
h1{text-align: center;}
form{text-align: center;}
</style>
</head>
<body>
<h1>BLOOD DONATION FORM</h1><br>
<form>
<label>Enter your Name:</label>
<input type="text"><br><br>
<label>Enter your Age:</label>
<input type="number"><br><br>
<label>Select your Gender:</label>
<input type="radio">Male
<input type="radio">Female
<input type="radio">Other
<br><br>
<label>Select your Blood group:</label>
<select>
<option value="A+ve">A+ve</option>
<option value="B+ve">B+ve</option>
<option value="AB+ve">AB+ve</option>
<option value="O+ve">O+ve</option>
<option value="B-ve">B-ve</option>
<option value="A-ve">A-ve</option>
<option value="AB-ve">AB-ve</option>
<option value="O-ve">O-ve</option>
</select><br><br>
<label>Current Health Status:</label><br>
<textarea cols="30" rows="10"></textarea><br><br>
<label>Have you ever donated blood in last 6 months?:</label>
<input type="checkbox">Yes
<input type="checkbox">No
<br><br>
<button>Submit form</button>
</form>
</body>
</html>