A form to collect user details (name, email, password).
<form>
, <input>
, <button>
, attributes like type
.
✔ Example:
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h1>Register Here</h1>
<form>
Name: <input type="text" name="name"><br><br>
Email: <input type="email" name="email"><br><br>
Password: <input type="password" name="password"><br><br>
<button type="submit">Submit</button>
</form>
</body>
</html>
Leave a Reply