Create a Student Registration Form in HTML Code

This is just a normal create an account registration form. There are not many fields but you can find some of the fields for creating or registering the user’s or student’s data.
This is the easy way to create Forms in HTML. You can learn it easily here… Create an HTML Form.
Here we are not using any Javascript or CSS for decorating it for now.
<html> <head> <title>Student Registration Form</title> </head> <body> <p align="right"><b> Date:</b></p> <h2>Forms</h2> <h3>Create an Account</h3> <hr> <form> <p>All the information need to fill.</p> <table> <tr> <td>username</td> <td><input type="text" name="userid"placeholder="Your name..."/></td> </tr> <tr> <td>password</td> <td><input type="password" name="paswod"/></td> </tr> <tr> <td>retypepassword</td> <td><input type="password" name="repaswod"/></td> </tr> <tr> <td>first name</td> <td><input type="text" name="fname"/></td> </tr> <tr> <td>last name</td> <td><input type="text" name="lname"/></td> </tr> <tr> <td>Address</td> <td><input type="text" name="address"/></td> </tr> <tr> <td><input type="submit" name="submited" value="submit"></td> <td><input type="reset" name="resettt" value="reset"></td> </tr> </table> </form> </body> </html>