Untitled

 avatar
unknown
html
a year ago
1.0 kB
1
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Hans Clothing</title>
  <style>
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
    }

    header {
      background-color: #4285f4;
      padding: 20px;
      text-align: center;
      color: white;
    }

    section {
      padding: 20px;
      text-align: center;
    }

    footer {
      background-color: #333;
      padding: 10px;
      text-align: center;
      color: white;
      position: fixed;
      bottom: 0;
      width: 100%;
    }
  </style>
</head>
<body>
  <header>
    <h1>Hans Clothing</h1>
    <p>Your fashion destination</p>
  </header>

  <section>
    <h2>Welcome to Hans Clothing</h2>
    <p>Discover the latest trends in fashion with our exclusive collection.</p>
  </section>

  <footer>
    &copy; 2024 Hans Clothing. All rights reserved.
  </footer>
</body>
</html>
Leave a Comment