-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 1.54 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 1.54 KB
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
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nested Table</title>
</head>
<body>
<br><br><br>
<center><h1><b>LAB ITEMS</b></h1></center>
<center><table border="1px" bgcolor="pink"></center>
<tr>
<th>GLASSWARE</th>
<th>BURNERS</th>
<th>STATIONARY</th>
<th>CHEMICALS</th>
</tr>
<tr>
<td>Glass Tubes</td>
<td>Sprit Lamps</td>
<td rowspan="2"><b> Office accessories</b>
<br><br>
<Table border="1px">
<tr>
<td> Blue Pens</td>
<td>20</td>
</tr>
<tr>
<td>Red Pens</td>
<td>50</td>
</tr>
<tr>
<td>Markers</td>
<td>30</td>
</tr>
</table>
</td>
<td> Normal Salts</td>
<tr>
<td>Test Tubes <br><br>
<Table border="1px">
<td>Small</td>
<td>50</td>
</tr>
<tr>
<td>Large</td>
<td>50</td>
</tr>
</Table>
</td>
<td>Bunsen Burner</td>
<td rowspan="2">salts for <br>ignition test</td>
</tr>
<tr>
<td>Ignition Tubes</td>
<td>blast burners</td>
<td>Registers</td>
</tr>
<tr>
<td colspan="4"><center>Funds Approved Rupees 2 lac</center></td>
</tr>
</table>
</body>
</html>