DATA COLLECTION USING HTML
<!DOCTYPE html>
<html>
<head>
<title>Welcome</title>
</head>
<center>DATA COLLECTION</html></center>
<body>
<form>
<b>
Sex:
<input type="radio" name="sex" value="male">Male
<input type="radio" name="sex" value="male">Female
<br>
<b>
Schools Attended:
<br>
<b>
Primary School:
<input type="checkbox" name="School" value="Primary">
<br>
Secondary School:
<input type="checkbox" name="School" value="Secondary">
<br>
Tertiary Institution:
<input type="checkbox" name="School" value="Tertiary">
<br>
Favourite Polytechnic:
<select name="Favourite Polytechnic">
<option value="Huk Poly"> H.U.K Polytechnic
<option value="Kad Poly"> Kaduna Polytechnic
<option value="NB Poly"> Nuhu Bamali Polytechnic
<option value="KN Poly"> Kauran Namoda Polytechnic
</option>
</select>
<br>
<b>Write little comments about Your Self:
<br><br>
<textarea name="words" cols="50" rows="10">Start Here.....</textarea>
<br>
<input type="reset" name="reset">
<input type="Submit" name="Submit">
</form>
</body>
</html>
Comments