CREATING TABLES IN HTML
-:HOW TO CREATE TABLES IN HTML :-
how to create tables in html to create follow me.
TYPE:-
HTML Table Example
<table>
<tr>
<th> Column #1 </th> <th> Column #2 </th>
</tr>
<tr>
<td> Row #1 </td> <td> Row #2 </td>
</tr>
<!-- YOU CAN ADD MANY COLUMNS AND ROWS YOU LIKE -->
</table>
result=
Collumn#1 | collumn#2 |
---|---|
row#1 | row#2 |
o it works
ReplyDelete