Recent

6/recent/ticker-posts

HTML (23)

HTML (23)


Dual Monitor Mac Setup | Computer setup, Mac setup, Gaming room setup


TABLES

It allows to arrange the data in the form of rows and columns of the cells.

TAGS OF TABLES

1.<table> = Define a table
2.<tr> = Defines table Row
3.<th> = Defines table Header
4.<td> = Defines table Data
5.<caption> = Defines Title or Caption

Simple Example ↓↓↓↓

<html>
<head>
<title>My Page</title> 
</head>
<body>
<table>
<caption>sample</caption>
<tr>
<td>sample1</td>
<td>sample2</td>
<td>sample3</td>
</tr>
</table>
</html>


Post a Comment

0 Comments