Recent

6/recent/ticker-posts

HTML (27)

HTML (27)

Gaming computer - TBB



Table Attribute


Align Attribute

This is used to align (Left, Right,Center) Table in Html document.

EXAMPLE ↓↓↓↓↓↓


<html>
<head>
<title>My Page</title>
<body>
This quick brown fox jumps over the lazy cat  
This quick brown fox jumps over the lazy cat
This quick brown fox jumps over the lazy cat
<table border="8" align="left">
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
</table>
This quick brown fox jumps over the lazy cat
This quick brown fox jumps over the lazy cat
This quick brown fox jumps over the lazy cat
<table border="8" align="right">
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
</table>
This quick brown fox jumps over the lazy cat
This quick brown fox jumps over the lazy cat
This quick brown fox jumps over the lazy cat
<table border="8" align="center">
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
</table>
</body>
</html>


Post a Comment

0 Comments