Web Development

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>

Tuts

About Author

Tutsmaster.org provides tutorials related to tech and programmings. We are also setting up a community for the users and students.

You may also like

HTML introduction
Web Development

HTML – Introduction, History & Syntax

  • December 21, 2019
So, first of all, I would like to ask a question for the first time when you heard this term
html heading tag
Web Development

HTML – Heading Tag With Syntax

  • December 21, 2019
A heading tag is one of the most important tags we focus on in HTML or web development because, without