-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfour_table.html
More file actions
56 lines (56 loc) · 1.64 KB
/
four_table.html
File metadata and controls
56 lines (56 loc) · 1.64 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- <link rel="stylesheet" href="main.css"> -->
</head>
<body><div>
<table nborder="3" width="500">
<tr>
<td width="20%">Tên</td>
<td colspan="2">Nguyễn Quốc Huy</td>
</tr>
<tr>
<td >Điện thoại</td>
<td class="j">0386144385</td>
<td class="j">0383426691</td>
</tr>
</table>
</div> <br> <h2 id="f" align="center">Bảng 2</h2>
<div>
<table border="5" bordercolor="red" width="500" align="center"
bgcolor="white" cellspacing="0" cellpadding="5" style="border-collapse:separate;">
<caption style="font-weight: bold; font-size: 18px; color: yellow;"><h2>Thông tin cá nhân</h2></caption>
<tr>
<th width="60%" align="center">Tên</th>
<th>Điện thoại</th>
</tr>
<tr>
<td rowspan="2" align="center">Nguyễn Quốc Huy</td>
<td>0386144385</td>
</tr>
<tr>
<td>0383426691</td>
</tr>
</table>
</div>
<div>
<table border="1">
<thead>
<th>STT</th>
<th>Name</th>
<th>Mã số</th>
</thead>
<tbody>
<tr>
<td>01</td>
<td>Huy</td>
<td>ad254</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>