HTML Form – Password


 Example
<form>
Enter Your Password: <input type="password" name="pwd">
</form>
 Preview 
Enter Your Password:

HTML Lists


Example 1

<ul>
<li>Name</li>
<li>Address</li>
<li>Phone No</li>
</ul>
  • Name
  • Address
  • Phone No 
Example 2
<ol>

<li>Name</li>
<li>Address</li>

<li>Phone No</li>
</ol>

Preview

  1. Name
  2. Address
  3. Phone No

HTML Table

Example1
 
<table border="1">

<tr>

<td>row 1, cell 1</td>

<td>row 1, cell 2</td>

</tr>

<tr>

<td>row 2, cell 1</td>

<td>row 2, cell 2</td>

</tr>

</table>


Preview  

row 1, cell 1 row 1, cell 2
row 2, cell 1 row 2, cell 2


Example 2

<table border="1">

<tr>

<td>row 1, cell 1</td>

<td>row 1, cell 2</td>
<td>row 1, cell 3</td>

</tr>

<tr>
<td>row 2, cell 1</td>

<td>row 2, cell 2</td>
<td>row 2, cell 3</td>

</tr>
<tr>
<td>row 3, cell 1</td>

<td>row 3, cell 2</td>
<td>row 3, cell 3</td>

</tr>


</table>

Preview  
row 1, cell 1 row 1, cell 2 row 1, cell 3
row 2, cell 1 row 2, cell 2 row 2, cell 3
row 3, cell 1 row 3, cell 2 row 3, cell 3