No. | Nama Binatang | No. | Nama Binatang |
---|---|---|---|
1 | Domba | 2 | Kambing |
3 | Kelinci | 4 | Sapi |
Kode Skrip:
<!DOCTYPE html>
<html>
<head>
<title>Tabel Binatang</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid red;
padding: 8px;
text-align: center;
}
th {
background-color: blue;
color: white;
}
.left-align {
text-align: left;
}
.highlight {
background-color: yellow;
}
</style>
</head>
<body>
<table>
<tr>
<th style="white-space: nowrap;">No.</th>
<th>Nama Binatang</th>
<th style="white-space: nowrap;">No.</th>
<th>Nama Binatang</th>
</tr>
<tr>
<td style="text-align: center;">1</td>
<td class="left-align">Domba</td>
<td style="text-align: center;">2</td>
<td class="left-align">Kambing</td>
</tr>
<tr class="highlight">
<td style="text-align: center;">3</td>
<td class="left-align">Kelinci</td>
<td style="text-align: center;">4</td>
<td class="left-align">Sapi</td>
</tr>
</table>
</body>
</html>
Script Code for a 4 Column Table in Blue, White, and Yellow
蓝色、白色和黄色 4 列表的脚本代码
नीले, सफेद और पीले रंग में 4 कॉलम तालिका के लिए स्क्रिप्ट कोड
Komentar
Posting Komentar
Kami berhak untuk menghapus komentar yang tidak sesuai dengan kebijakan komentar kami