-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq2.html
53 lines (47 loc) · 869 Bytes
/
q2.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Sales</title>
<style>
table,
th,
td {
border: 1px solid black;
}
</style>
</head>
<body>
<table class="demo">
<caption>Sales</caption>
<thead>
<tr>
<th>Product</th>
<th>Total Sales</th>
</tr>
</thead>
<tbody>
<tr>
<td> Product 1</td>
<td id="pr1"></td>
</tr>
<tr>
<td> Product 2</td>
<td id="pr2"></td>
</tr>
<tr>
<td> Product 3</td>
<td id="pr3"></td>
</tr>
<tr>
<td> Product 4</td>
<td id="pr4"></td>
</tr>
<tr>
<td> Product 5</td>
<td id="pr5"></td>
</tr>
<tbody>
</table>
<script src="tables.js"></script>
</body>
</html>