learn programming language ||web design||
1 subscriber
123 photos
7 videos
142 links
Introduction to HTML, CSS, JavaScript, PHP and
Web webdesign Tutorials.
Download Telegram
HTML Table Tag
HTML table

Example

<! Doctype html>
<html>
<body>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
</body>
</html>

HTML Table Tag
HTML table
HTML Table Tag
Table heading

<! Doctype html>
<html>
<table border= 2>
<tr>
<th>A </th>
<th>Heading</th>
<th>Row</th></th>
<tr>
<td>The first</td>
<td>row of </td>
<td>table data</td></tr>
</tr>
<td>the second</td>
<td>row of</td>
<td>table date</td>
</td></table>
</html>
HTML Table Tag
Table heading
HTML Table Tag
Header cells TD


Example

<! Doctype html>
<html>
<body>
<table>
<tr>
<td>Cell A</td>

<td>Cell B</td>

</tr>
<tr>
<td>Cell C</td>

<td>Cell D</td>
</tr>
</table>
</body>
</htm>
HTML Table Tag
Header cells TD