HTML (27)
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 catThis 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>
0 Comments