-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss04.html
More file actions
31 lines (31 loc) · 817 Bytes
/
Copy pathcss04.html
File metadata and controls
31 lines (31 loc) · 817 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>css04</title>
<link href="CSS/css04.css" rel="stylesheet">
</head>
<body>
<table border="1" style="font-family: arial">
<caption>Món ngon: Thịt kho Sả</caption>
<tr>
<td width="300px">Nguyên liệu</td>
<td width="100px">Số lượng</td>
</tr>
<tr>
<td>Thịt nạc băm</td>
<td>200g</td>
</tr>
<tr>
<td>Củ sả</td>
<td>2</td>
</tr>
<tr>
<td>Ớt hiểm</td>
<td>1 trái</td>
</tr>
<tr>
<td>Gia vị: muối, nước mắm, đường, hạt nêm</td>
<td>Vừa đủ</td>
</tr>
</table>
</body>