chromium/chrome/test/data/print_to_pdf/structured_doc.html

<!DOCTYPE html>
<html lang="en">
<body>
  <h1>Title</h1>
  <p>Para</p>
  <ul>
    <li>Item 1</li>
    <li>Item 2</li>
  </ul>
  <div>
    <a href="https://google.com/">Link to Google</a>
  </div>
  <table>
    <tr>
      <th>Header 1</th>
      <th>Header 2</th>
    </tr>
    <tr>
      <td>Cell 1</td>
      <td>Cell 2</td>
    </tr>
  </table>
  <h2>Subheading</h2>
  <div>
    <img src="svg_example_image.png" alt="Car at the beach">
  </div>
  <p lang="fr">
    Ceci n'est pas une pipe
  </p>
</body>
</html>