Table tag in html

 

TABLE TAG</>💢

Table is defined by Table Element in HTML document . A table is

 stated by opening <table> tag . And the closing of the table is done 

by the closing <table/> tag. Basically we represent data in tabular 

format by table. This data includes types of data like Text , image , 

videos , link etc .





 

 

first name

 

     Last name

 

 

Age

 

contact

Udit

khode

20

91XXXXXXXXXX

Rahul

yadav

22

91XXXXXXXXXX

priya

singh

18

91XXXXXXXXXX

 

·      Basic Tags involves in Table Tag</>

<table>       :HTML table is defined by this element.


<tr>              : stands for Table Row use for defining table row

<td>             : stands for Table Data, also known as cell Data


<th>             : Table Heading (bold, middle alignment)


<caption>   : use to define Table Title

<!DOCTYPE html>

<html lang="en">

<head>
    <title>SYNTAX OF HTML</title>
</head>

<body>

</body>

</html>


Post a Comment

0 Comments