Registration Form:-
Let's start with a basic code of Registration form
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h1>Registration Form</h1>
<form>
Username:<input type="text" name="t1" placeholder="Enter Username"><br><br>
Password:<input type="Password" placeholder="Enter Password"><br><br>
Firstname:<input type="text"><br><br>
Lastname:<input type="text"><br><br>
Mobile no:<input type="text"><br><br>
City
<select>
<option>Mumbai</option>
<option>Jaipur</option>
</select><br><br>
<input type="submit" Value="submit">
</form>
</body>
</html>
Output:-


0 Comments