-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.html
49 lines (43 loc) · 1.13 KB
/
tables.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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div>
<table width="400" border="1 solid black">
<caption>table</caption>
<colgroup span="3" style="background-color: coral;"></colgroup>
<thead>
<th>company</th>
<th>item</th>
<th>price</th>
</thead>
<tbody>
<tr>
<td>apple</td>
<td>iphone</td>
<td>100000</td>
</tr>
<tr>
<td>samsung</td>
<td>phone</td>
<td>10000</td>
</tr>
<tr>
<td>nokia</td>
<td>beast</td>
<td>1000</td>
</tr>
</tbody>
</table>
</div>
<div>
<select size="2" multiple>
<option>delhi</option>
<option>chilli</option>
<option>billi</option>
<option>gilli</option>
</select>
</div>
</body>
</html>