
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <meta name="robots" content="index, follow"/>
  <title>letclothesbeclothes.org - Heart Internet</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f3f3f3;
    }
    header {
      background: #6db643;
      padding: 20px;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 24px;
      font-weight: bold;
    }
    .search-bar input {
      padding: 6px;
      width: 250px;
    }
    .search-bar button {
      padding: 6px 10px;
      background: #333;
      color: white;
      border: none;
      cursor: pointer;
    }
    main {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      background: #fff;
    }
    .domain-title {
      font-size: 28px;
      color: #4caf50;
      text-align: center;
      margin-bottom: 10px;
    }
    .info-text {
      text-align: center;
      margin-bottom: 40px;
      color: #555;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .card {
      flex: 1;
      min-width: 220px;
      max-width: 240px;
      color: white;
      padding: 20px;
      border-radius: 5px;
    }
    .card.red { background: #c62828; }
    .card.orange { background: #ef6c00; }
    .card.green { background: #66bb6a; }
    .card.blue { background: #0277bd; }
    .card h3 {
      margin-top: 0;
    }
    aside {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 5px;
      margin-top: 20px;
    }
    aside h4 {
      margin-top: 0;
      color: #333;
    }
    aside ul {
      list-style: none;
      padding-left: 0;
    }
    aside ul li::before {
      content: "✔️ ";
      color: green;
    }
    footer {
      text-align: center;
      color: #999;
      font-size: 14px;
      padding: 20px;
    }
  </style>
</head>
<body>

<header>
  <div class="logo">heart internet</div>
  <div class="search-bar">
    <input type="text" placeholder="Domain Name Search...">
    <button>🔍</button>
  </div>
</header>

<main>
  <div class="domain-title">letclothesbeclothes.org</div>
  <div class="info-text">
    This domain has been registered by Heart Internet. If you are the owner of this domain, <a href="#">please login</a>.
  </div>

  <div class="cards">
    <div class="card red">
      <h3>Web Hosting</h3>
      <p>Unlimited web hosting packed full of great features, from only £2.49 per month.</p>
    </div>
    <div class="card orange">
      <h3>Reseller Hosting</h3>
      <p>Make money selling unlimited websites and domains with our white label reseller package.</p>
    </div>
    <div class="card green">
      <h3>Domain Names</h3>
      <p>Great value domains from £2.79/year. Already have one? Transfer for free.</p>
    </div>
    <div class="card blue">
      <h3>Dedicated Servers</h3>
      <p>Perfect for high-demand sites. From only £79.99/month.</p>
    </div>
  </div>

  <div style="display: flex; gap: 20px; flex-wrap: wrap;">
    <aside style="flex: 1;">
      <h4>Reseller Web Hosting</h4>
      <ul>
        <li>Host unlimited domains</li>
        <li>Own control panel</li>
        <li>Unlimited bandwidth</li>
        <li>Generic SSL & name servers</li>
        <li>No contract</li>
        <li>Create custom hosting packages</li>
        <li>£30 Google Ads voucher</li>
      </ul>
    </aside>

    <aside style="flex: 1;">
      <h4>Web Hosting</h4>
      <ul>
        <li>No space or data limits</li>
        <li>Unlimited email</li>
        <li>Unlimited databases</li>
        <li>Multi-site hosting</li>
        <li>UK data centres</li>
        <li>Smartphone control panel</li>
        <li>Instant activation</li>
      </ul>
    </aside>
  </div>
</main>

<footer>
  &copy; 2025 Heart Internet. All rights reserved.
</footer>

</body>
</html>
