-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtables.html
More file actions
37 lines (37 loc) · 961 Bytes
/
tables.html
File metadata and controls
37 lines (37 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head> <title> Tables </title>
</head>
<body>
<table background="images/pattern.png" width="400" border="1" frame="box" cellspacing="10" cellpadding="0">
<caption> Products Data </caption>
<colgroup span="2"> </colgroup>
<thead >
<tr>
<th> Name </th>
<th width="200"> Price </th>
<th> Preview </th>
</tr>
</thead>
<tbody align="center" valign="center" height="100">
<tr >
<td> Samsung TV </td>
<td> ₹ 45000.67/- </td>
<td> <img src="images/tv.jpg" width="50" height="50"> </td>
</tr>
<tr>
<td> Nike Casuals </td>
<td> ₹ 5000.55/- </td>
<td> <img src="images/shoe.jpg" width="50" height="50"> </td>
</tr>
</tbody>
<tfoot>
<tr>
<td> © Copyright </td>
<td> All rights reserved </td>
<td align="right"> Amazon </td>
</tr>
</tfoot>
</table>
</body>
</html>