Ayt 1
Ayt 1
DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bảng giới thiệu bản thân</title>
<style>
table {width: 80%; margin: auto; border-collapse: collapse;
}
th, td{ border: 2px solid black; padding: 10px; text-align: center;
}
th {
background-color:yellow;
}
td {
background-color:blue;
}
.hightlight{ background: #f4a261; font-weight: bold;
}
.blue { background-color: # 3498db; color: white;
}
</style>
</head>
<body>
<table>
<tr>
<th colspan="2"> TÊN </th>
</tr>
<tr>
<th colspan="2"> NỘI DUNG1 </th>
</tr>
<tr>
<th colspan="2" class="hightlight"> NỘI DUNG2 </th>
</tr>
<tr>
<td class"blue"> NỘI DUNG3 </td>
<td class"blue"> NỘI DUNG4 </td>
</tr>
<tr>
<td class"blue"> NỘI DUNG5 </td>
<td class"blue"> NỘI DUNG6 </td>
</tr>
<tr>
<th colspan="2"> NỘI DUNG7 </th>
</tr>
</table>
</body>
</html>