site a web page using
appropriate HTML tags to
glay the given form.
tivity
CREATE YOUR OWN FORM
First name:
Last name:
Username
Password
Birthday, January
1 - 1987 -
Gender: Male Female
Locanon: Chandigarh
I agree to the Kips Terms of services and Privacy Policy.
Remarks:
Thanks for updating your information.
SEND
RESET
Answers
Required HTML Code :
_________________________
<!Doctype html>
<html>
<head>
<title>From</title>
<body bgcolor=red text=white>
</head>
<center><h1><u>Form</u></h1></center>
<table>
<tr> <td colspam=40>First name:<td><input type=text=20>
<tr> <td colspam=40>Last name:<td><input type=text=20>
<tr> <td colspam=40>Username:<td><input type=text=20>
<tr> <td colspam=40>Password:<td><input type=text=20>
<tr> <td colspam=40>Birthday<td>
<select>
<option>
<option>January-1-1987
<option>January-2-1987
<option>January-3-1987
<option>January-4-1987
<option>January-5-1987
<option>January-6-1987
<option>January-7-1987
<option>January-8-1987
<option>January-9-1987
<option>January-10-1987
</select>
<tr><td colspam=40>Gender:<td><input type=radio name="mf"> Male <input type=radio name="mf"> Female
<tr> <td colspam=40>Location:<td><input type=text=20>
<tr> <td colspam=40>Remarks:<td> <textarea height=2 width=3></textarea>
</table>
<br>
<b>Thanks for updating your information<b>
<br>
<br>
<input type=button value="Send">
<input type=button value="Reset">
</body>
</html>
_________________________
★ See the attachment for the output of this code