0-9 . A . B . C . D . E . F . G . H . I . J . K . L . M . N . O . P . Q . R . S . T . U . V . W . X . Y . Z . А-Я

Tables

Use the following code to make tables with black headers.

<style>
table, th, td {  border: 0.5px solid; }
td { padding: 4px; }
th { color: white; background-color: #000; padding: 6px; }
</style>

HTML Table Example

ID      Letter      Call Sign
0001AAlpha
0002BBravo
0003CCharlie

<table class="w3-medium">
<tr><th><strong>ID</strong></th><th><strong>Letter</strong></th>
<th><strong>Call Sign</strong></th></tr>
<tr><td>0001</td><td>A</td><td>Charlie</td></tr>
<tr><td>0002</td><td>B</td><td>Bravo</td></tr>
<tr><td>0003</td><td>C</td><td>Charlie</td></tr>
</table>

Related Pages


External Links


HTML Canvas Table Example