Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>Web tables</title>
</head>
<body>
  <table>
    <caption>Example Caption</caption>
    <tr>
      <th>Login</th>
      <th>Email</th>
    </tr>
    <tr>
      <td>user1</td>
      <td>user1@example.com</td>
    </tr>
    <tr>
      <td>user2</td>
      <td>user2@example.com</td>
    </tr>
  </table>
</body>
</html>