Registration Form
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h2>Registration Form</h2>
<label>first name</label>
<input type="text">
<br>
<label>last name</label>
<input type="text">
<br>
<label>email</label>
<input type="email">
<br>
<label>password</label>
<input type="password ">
<br>
<label>contact</label>
<input type="number">
<br>
<label>gender</label>
<input type="gender">
<br>
<input type="submit">
</body>
</html>
Output:
Comments
Post a Comment