0% found this document useful (0 votes)
38 views

HTML Tags Chart7

The document provides examples of how to create tables with different formatting options in HTML. It shows tables with columns, rows, borders, cell padding, cell spacing, header rows defined with <th>, and alignment within a <div> container.

Uploaded by

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

HTML Tags Chart7

The document provides examples of how to create tables with different formatting options in HTML. It shows tables with columns, rows, borders, cell padding, cell spacing, header rows defined with <th>, and alignment within a <div> container.

Uploaded by

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

deleted

<strike> <strike>Example</strike> Example


text
strong
<strong> <strong>Example</strong> Example
emphasis
Example 1:

<table border="4" cellpadding="2"


cellspacing="2" width="100%">
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
</table> Example 1: (Tip)
Example 2: (Internet Explorer) Column 1 Column 2

<table border="2" bordercolor="#336699"


cellpadding="2" cellspacing="2"
width="100%"> Example 2: (Tip)
<tr>
<td>Column 1</td>
<table> table Column 1 Column 2
<td>Column 2</td>
</tr>
</table>
Example 3: (Tip)
Example 3:

<table cellpadding="2" cellspacing="2" Column 1 Column 2


width="100%"> Row 2 Row 2
<tr>
<td bgcolor="#cccccc">Column 1</td>
<td bgcolor="#cccccc">Column 2</td>
</tr>
<tr>
<td>Row 2</td>
<td>Row 2</td>
</tr>
</table>
<table border="2" cellpadding="2"
cellspacing="2" width="100%">
<tr>
table
<td> <td>Column 1</td>
data Column 1 Column 2
<td>Column 2</td>
</tr>
</table>
<div align="center">
<table>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th> Colum Colum Colum
</tr> n1 n2 n3
table <tr>
<th> Row 2 Row 2 Row 2
header <td>Row 2</td>
<td>Row 2</td> Row 3 Row 3 Row 3
<td>Row 2</td> Row 4 Row 4 Row 4
</tr>
<tr>
<td>Row 3</td>
<td>Row 3</td>
<td>Row 3</td>

You might also like