0% found this document useful (0 votes)
17 views1 page

Creating HTML Tables Guide

The document explains how to create tables in HTML using opening and closing table tags and table rows, headers, and data. It includes an example table with names, surnames, and ages.

Uploaded by

mzamoyethun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views1 page

Creating HTML Tables Guide

The document explains how to create tables in HTML using opening and closing table tags and table rows, headers, and data. It includes an example table with names, surnames, and ages.

Uploaded by

mzamoyethun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<html>

<head>
<title>Tables in HTML</title>
Tables in HTML Opening table tag:
All formatting of the table is
</head> done here.

<body>
<h1>How to make tables in HTML</h1>

<table> Table Headers:


Automatically
<tr> formatted as
<th>Name</th> bold. Name Surname Age
Table Row <th>Surname</th>
<th>Age</th>
</tr>

<tr>
<td>Susan</td> Susan Venter 17
Table Data
Table Row <td>Venter</td>
<td>17</td>
</tr>

<tr> Jacob Andrews 18


<td>Jacob</td>
Table Row <td>Andrews</td>
<td>18</td>
</tr>
Bianca van der Merwe 16
<tr>
<td>Bianca</td>
Table Row <td>van der Merwe</td>
<td>16</td>
</tr>

</table>

</body> Closing table tag

</html> Mrs. R. Rautenbach

You might also like