Saturday, 18 August 2012

CREATE A TABLE HAVING 2 ROWS AND 2 COLUMNS


Hi Friends...

Welcome back

Here is  the code available for creating a Table having 2 Rows & 2 Columns.

  •  Open a Notepad and type the following code.

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>MY FIRST WEB PAGE</title>
</head>

<body>
<table width="200" border="1" align="center">
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html>


  • Save the file by the name "table.html" on your Desktop.
  • Open the table.html 
  •  You will view a Table like this.

Have fun.
will present with a new Article very soon.

No comments:

Post a Comment