Write the HTML code for the following form binary tree

HTML 5 / HTML Forms

789

Program:

<form>
<table>
    <tr>
	    <td> User Name:</td>
		<td> <input type = "text" name = "first_name" > </td> 
	</tr>	
	<tr>
		<td> Password: </td>
		<td> <input type = "text" name = "last_name" > </td>
	</tr>
	
	<tr>
	   <td></td>
	    <td> <input type = "checkbox" id = "chkPeace" value = "peace"> Remaind Me</td>
	</tr>	
    <tr>	
	   <td></td>
       <td>
	    <input type="submit" name="submit" value="OK">  
	   <input type="reset" value="Clear"> </td>
	<tr>
</table>	
</form>

Output:

Live Preview

Explanation:

none

This Particular section is dedicated to Programs only. If you want learn more about HTML 5. Then you can visit below links to get more depth on this subject.