mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
23 lines
371 B
HTML
23 lines
371 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table>
|
||
|
<caption>Example Caption</caption>
|
||
|
<tr>
|
||
|
<th>Login</th>
|
||
|
<th>Email</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>user1</td>
|
||
|
<td>user1@sample.com</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>user2</td>
|
||
|
<td>user2@sample.com</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|