Basic Structure

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    Content goes here
  </body>
</html>

Headings

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

Paragraphs

<p>This is a paragraph</p>

Line Break

<p>This is the first line.<br>This is the second line.</p>

Horizontal Line

<hr>

Links

<a href="<https://www.example.com>">Link text</a>

Lists

Unordered List

<ul>
  <li>List item 1</li>
  <li>List item 2</li>
</ul>

Ordered List

<ol>
  <li>List item 1</li>
  <li>List item 2</li>
</ol>

Tables

<table>
  <thead>
    <tr>
      <th>Column 1</th>
      <th>Column 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Row 1, Column 1</td>
      <td>Row 1, Column 2</td>
    </tr>
    <tr>
      <td>Row 2, Column 1</td>
      <td>Row 2, Column 2</td>
    </tr>
  </tbody>
</table>

Forms