Simple Registration Form

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: &lt;input type="text" name="name"&gt;&lt;br&gt;&lt;br&gt;
Email: &lt;input type="email" name="email"&gt;&lt;br&gt;&lt;br&gt;
Password: &lt;input type="password" name="password"&gt;&lt;br&gt;&lt;br&gt;
&lt;button type="submit"&gt;Submit&lt;/button&gt;
</form> </body> </html>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *