0% found this document useful (0 votes)
4 views1 page

Ayt 1

The document is an HTML template for a personal introduction table. It includes various sections with placeholders for content, styled with CSS for visual appeal. The table features different background colors for headers and data cells to enhance readability.

Uploaded by

manhhien1627
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Ayt 1

The document is an HTML template for a personal introduction table. It includes various sections with placeholders for content, styled with CSS for visual appeal. The table features different background colors for headers and data cells to enhance readability.

Uploaded by

manhhien1627
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 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>

You might also like