-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.html
More file actions
56 lines (56 loc) · 1.39 KB
/
4.html
File metadata and controls
56 lines (56 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Òàáëèöû â HTML5</title>
<style>
td{
width: 60px;
height:60px;
border: solid 1px silver;
text-align:center;
}
</style>
</head>
<body>
<table>
<caption><b>Ïîïóëÿðíûå ñìàðòôîíû 2015</b></caption>
<thead>
<tr>
<th>Ìîäåëü</th> <th>Êîìïàíèÿ</th> <th>Öåíà</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nexus 6P</td> <td>Huawei</td> <td>49000</td>
</tr>
<tr>
<td>iPhone 6S PLus</td> <td>Apple</td> <td>62000</td>
</tr>
<tr>
<td>Lumia 950 XL</td> <td>Microsoft</td> <td>35000</td>
</tr>
<tbody>
<tfoot>
<tr>
<th colspan="3">Èíôîðìàöèÿ ïî ñîñòîÿíèþ íà 17 ìàðòà</th>
</tr>
</tfoot>
</table>
<table>
<tr>
<td rowspan="2" style="background-color:green;">1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td colspan="2" style="background-color:red;">7</td>
</tr>
</table>
</body>
</html>