
User Registration Form in HTML - i wanted to design a user registration form in HTML. So, Can anyone please guide me or give me a peace of code to design a user registration form in HTML. Thanks in Advance!

The Given is the HTML Registration Form Code you can add JavaScript Validation code to make it more interactive.
<html>
<body>
<form>
<table width="40%" bgcolor="#efee82" align="center">
<tr>
<td colspan=3 ><font size=3><center><b>REGSTRATION FORM</b></center>
</tr>
<tr>
<td width="30%">Login Name:<br/></td>
<td><input type="text" size=25 maxlength=20 name="loginName"></td>
</tr>
<tr>
<td width="30%">Password:<br/></td>
<td><input type="password" size=25 maxlength=20></td>
</tr>
<tr>
<td width="30%">Confirm Password :<br/></td>
<td><input type="password" size=25 maxlength=20></td>
</tr>
<tr>
<td width="30%">Email :<br/></td>
<td><input type="text" size=25 maxlength=20></td>
</tr>
<tr>
<td width="30" valign="middle">Gender:</td>
<td><select name="" onchange="";>
<option selected="selected" value="">---Select---</option>
<option value="AU_61">Male</option>
<option value="AU_61">Female</option>
</select></td>
</tr>
<td width="30" valign="middle">Select Country :</td>
<td><select name="" onchange="";>
<option selected="selected" value="">---Select---</option>
<option value="AU_61">India</option>
<option value="AU_61">Country</option>
<option value="AU_61">Country</option>
<option value="AU_61">Country</option>
<option value="AU_61">Country</option>
<option value="AU_61">Country</option>
</select></td>
</tr>
<tr>
<td width="30%">Adress:<br/></td>
<td><textarea rows=3 colos=30></textarea></td>
</tr>
<tr>
<td width="30%">Phone no:<br/></td>
<td><input type="text" size=25 maxlength=10></td>
</tr>
<tr>
<td ><input type="Reset">
<td ><input type="submit" value="Submit">
</tr>
</table>
</form>
</body>
</html>

Thanks for providing, such a useful registration form in html with source code.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.