HTML (28) PART 1
Table Attribute
Background attribute
This is used to place a image or picture in a tabled
TAG: <background>
Example ↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
</head>
<body>
<table Border="7" Background="C:\Users\Public\Pictures\Sample Pictures\Tulips.jpg">
<tr>
<td>SAMPLE</td>
<td>SAMPLE</td>
<td>SAMPLE</td>
<td>SAMPLE</td>
<tr>
</table>
</body>
</html>
0 Comments