0% found this document useful (0 votes)
11 views

HTML assignment 5

this is my html assignment

Uploaded by

shivajiiitan1224
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views

HTML assignment 5

this is my html assignment

Uploaded by

shivajiiitan1224
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Assignment 5

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<center></center>
<h2>Registration Form</h2>
<form>
<table>
<tr>
<td>User Id:</td>
<td><input type="text" required></td>
</tr>
<tr>
<td>password:</td>
<td><input type="password"></td>
</tr>
<tr>
<td>Name:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Address:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Country:</td>
<td>
<select>
<option>(please select a country)</option>
<option>india</option>
<option>usa</option>
</select>
</td>
</tr>
<tr>
<td>ZIP Code:</td>
<td><input type="text" ></td>
</tr>
<tr>
<td>Emali:</td>
<td><input type="email" name="gmail"></td>
</tr>
<tr>
<td>Sex:</td>
<td> Male<input type="radio" name="Gender">
Female<input type="radio" name="Gender"></td>
</tr>
<tr>
<td>Language:</td>
<td> English<input type="radio" name="Language">
Non English<input type="radio" name="Language"></td>
</tr>
<tr>
<td>About:</td>
<td><textarea></textarea></td>
</tr>
<tr>
<td><input type="submit" name="submit"></td>
</tr>

</table>
</form>
</center>

</body>
</html>

You might also like