Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.4 kB
0
Indexable
Never
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Electronic Products</title>
  </head>
  <body>
    <header>
      <h1>Electronic Products</h1>
    </header>
    <nav>
      <ul>
        <li><a href="#smartphones">Smartphones</a></li>
        <li><a href="#laptops">Laptops</a></li>
        <li><a href="#tablets">Tablets</a></li>
      </ul>
    </nav>
    <main>
      <section id="smartphones">
        <h2>Smartphones</h2>
        <p>Check out our latest selection of smartphones:</p>
        <ul>
          <li>Samsung Galaxy S21</li>
          <li>iPhone 13</li>
          <li>OnePlus 10</li>
        </ul>
      </section>
      <section id="laptops">
        <h2>Laptops</h2>
        <p>Here are some of the laptops we offer:</p>
        <ul>
          <li>Dell XPS 15</li>
          <li>MacBook Pro</li>
          <li>Asus ROG Zephyrus G14</li>
        </ul>
      </section>
      <section id="tablets">
        <h2>Tablets</h2>
        <p>We have a variety of tablets to choose from:</p>
        <ul>
          <li>iPad Pro</li>
          <li>Samsung Galaxy Tab S7+</li>
          <li>Microsoft Surface Pro 8</li>
        </ul>
      </section>
    </main>
    <footer>
      <p>&copy; 2023 Electronic Products. All rights reserved.</p>
    </footer>
  </body>
</html>