-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
40 lines (40 loc) · 997 Bytes
/
table.html
File metadata and controls
40 lines (40 loc) · 997 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
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Table Example</title>
</head>
<body>
<table>
<!-- <colgroup span = "3" style = "background-color:silver"/> -->
<colgroup>
<col style="background-color:silver">
<col span="2"style="background-color:yellow">
</colgroup>
<thead style="color: green; background-color: lavender">
<tr>
<th>Месяц</th>
<th>Продажи</th>
<th>Менеджер</th>
</tr>
</thead>
<tfoot style="color: blue">
<tr>
<td>Итого</td>
<td colspan="2" style="text-align: right">170 000</td>
</tr>
</tfoot>
<tbody style="color: red">
<tr>
<td>Ноябрь</td>
<td>70 000</td>
<td>Шашкин</td>
</tr>
<tr>
<td>Декабрь</td>
<td>100 000</td>
<td>Пупкин</td>
</tr>
</tbody>
</table>
</body>
</html>