Kodu chatgpt'ye hazırlattım. Mobil uyumludur. Gerekli yerleri değiştirerek kullanabilirsiniz. Veritabanı falan gerektirmez. hostunuza direkt index.html olarak yüklerseniz çalışır.

<!DOCTYPE html>
<html lang="tr">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Bu Domain Satılıktır</title>
  <style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background: linear-gradient(135deg, #ff7e5f, #feb47b);
      color: #ffffff;
      text-align: center;
    }

    .container {
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    a {
      display: inline-block;
      text-decoration: none;
      color: #fff;
      background: #ff5722;
      padding: 10px 20px;
      font-size: 1.2rem;
      font-weight: bold;
      border-radius: 5px;
      transition: background 0.3s ease;
    }

    a:hover {
      background: #e64a19;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }
      p {
        font-size: 1rem;
      }
      a {
        font-size: 1rem;
      }
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Bu Domain Satılıktır</h1>
    <p>Bu domaini satın almak için bizimle iletişime geçin:</p>
    <a href="mailto:info@domainadresiniz.com">info@domainadresiniz.com</a>
  </div>
</body>
</html>