- Joined
- December 10, 2022
- Messages
- 245
- Points
- 58
- IGN
- Zyzz32
HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>Register Form</title>
<style = "text/css">
body {background-color: aquamarine;}
</style>
</head>
<body>
<form>
<table>
<tr>
<td>Name :</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Password :</td>
<td><input type="password"></td>
</tr>
<tr>
<td>Gender :</td>
<td>
<input type="radio" name="Gender"> Male
<input type="radio" name="Gender"> Female
</td>
</tr>
<tr>
<td>Email :</td>
<td><input type="email"></td>
</tr>
<tr>
<td>Phone no :</td>
<td>
<select>
<option>977</option>
<option>978</option>
<option>979</option>
<option>973</option>
<option>972</option>
<option>974</option>
</select>
<input type="phone">
</td>
</tr>
<tr>
<td><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>
save it as a .html file and it will look like this:
View: https://imgur.com/ImQn4MJ