how to make form in html??
Answers
Answer:
first write the programming in notepad and then save it in drive:d in my computer application and name the folder by any name you want and the to run the program go in my computer application and open the folder.
Coding
<!DOCTYPE html>
<html>
<head>
<title>Register Form</title>
</head>
<body>
<form>
<table border = 1px>
<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><input type = "submit"
value = "Submit"></td>
</tr>
</table>
</form>
</body>
</html>
Output