blob: 429dea3666e2ab07694ae858db072ab9481aa955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<style>
table {
border: 1px solid black;
border-collapse: collapse;
}
td {
border: 1px solid black;
}
</style>
<table>
<tr>
<td>td</td>
</tr>
</table>
|