mirror of
https://github.com/kovetskiy/mark.git
synced 2025-04-23 21:32:41 +08:00
29 lines
372 B
HTML
29 lines
372 B
HTML
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>HEADER1</th>
|
|
<th>HEADER2</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>row1</td>
|
|
<td>row2</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center">HEADER1</th>
|
|
<th style="text-align:right">HEADER2</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td style="text-align:center">row1</td>
|
|
<td style="text-align:right">row2</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|