<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>XHTML Example</title>
    <meta charset="UTF-8" />
    <style type="text/css">
      body { font-family: Arial, sans-serif; background: #f9f9f9; }
      h1 { color: #1a237e; }
      ul { margin: 1em 0; }
    </style>
  </head>
  <body>
    <h1>Hello, XHTML!</h1>
    <p>This is a more complete XHTML document with a list and a table:</p>
    <ul>
      <li>First item</li>
      <li>Second item</li>
      <li>Third item</li>
    </ul>
    <table border="1">
      <tr><th>Name</th><th>Value</th></tr>
      <tr><td>Alpha</td><td>1</td></tr>
      <tr><td>Beta</td><td>2</td></tr>
    </table>
    <footer>
      <p>&copy; 2026 aytict.fi</p>
    </footer>
  </body>
</html>
