-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-table.html
More file actions
118 lines (108 loc) · 2.91 KB
/
example-table.html
File metadata and controls
118 lines (108 loc) · 2.91 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="author" content="Longdeptrai">
<title>Tạo bảng</title>
</head>
<body style="background-color: #ffedca" >
<p>
GITHUB branch
</p>
<p>
GITHUB branch
</p>
<div >
<img style="float: left;" src="./example3.jpg" alt="Hình sai" title="Đây là hình ảnh" width="250" height="200" />
<h1 style="text-align: center; color:#CC6600 "> Các món ngon Quảng Nam</h1>
<table border="1px" align="center" width="400" cellspacing="0" >
<thead style="background-color: #CC6600; color: #ffffff" >
<tr>
<th width="50">STT</th>
<th>Tên món ăn</th>
</tr>
</thead>
<tbody>
<tr style="background-color: #FFFFFF">
<td align="center">1.</td>
<td>Mì Quảng</td>
</tr>
<tr>
<td align="center">2.</td>
<td>Cháo lòng</td>
</tr>
<tr style="background-color: #FFFFFF">
<td align="center">3.</td>
<td>Ốc bưu um</td>
</tr>
<tr>
<td align="center">4.</td>
<td>Cá lóc nướng giấy bạc</td>
</tr>
<tr style="background-color: #FFFFFF">
<td align="center">5.</td>
<td>Lòng xào nghệ</td>
</tr>
</tbody>
</table>
</div>
<div align="center" >
<h1 style="color:#CC0033">Chương trình học - ngành lập trình</h1>
<table border="1" cellspacing="0" width="700" bordercolor="#CC0020">
<thead style="color: #ffffff; background-color: #CC0033">
<tr>
<th rowspan="2" width="30%">Nhóm học phần</th>
<th rowspan="2" >Môn học</th>
<th colspan="2" width="30%">Số tiết</th>
</tr>
<tr>
<th>Lý thuyết</th>
<th>Thực hành</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="6" align="center" style="color:#CC0033">I <br/> Tin học văn phòng</td>
<td>Hệ điều hành </td>
<td align="center">3</td>
<td align="center">5</td>
</tr>
<tr>
<td>Sử dụng Internet</td>
<td align="center">3</td>
<td align="center">5</td>
</tr>
<tr>
<td>Soạn thảo văn bản với MS Word</td>
<td align="center">24</td>
<td align="center">40</td>
</tr>
<tr>
<td>Tạo bài trình diễn với MS Powerpoint</td>
<td align="center">9</td>
<td align="center">15</td>
</tr>
<tr>
<td>Xử lý số liệu với MS Excel</td>
<td align="center">10</td>
<td align="center">20</td>
</tr>
<tr>
<td>Tạo trang web với MS Frontpage</td>
<td align="center">12</td>
<td align="center">25</td>
</tr>
<tr>
<td rowspan="2" align="center" style="color:#CC0033">II <br/> Kỹ Thuật lập trình</td>
<td>Nhập môn lập trình</td>
<td align="center">5</td>
<td align="center">10</td>
</tr>
<tr>
<td>Kỹ Thuật lập trình</td>
<td align="center">6</td>
<td align="center">10</td>
</tr>
</tbody>
</table>
</div>
</body>