Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.3 kB
2
Indexable
Never
<!DOCTYPE html>
<html>
<head>
  <title>Earphone Site</title>
  <style>
    /* Add CSS styles for your homepage */
    body {
      font-family: Arial, sans-serif;
      background-color: #f2f2f2;
      margin: 0;
      padding: 0;
    }
    
    header {
      background-color: #333;
      color: #fff;
      padding: 20px;
      text-align: center;
    }
    
    h1 {
      margin: 0;
      font-size: 36px;
    }
    
    main {
      max-width: 800px;
      margin: 20px auto;
      padding: 20px;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    /* Add more styles as needed */
  </style>
</head>
<body>
  <header>
    <h1>Welcome to our Earphone Site!</h1>
  </header>
  
  <main>
    <h2>About Us</h2>
    <p>Here you can find the best earphones for your music experience. We offer a wide range of high-quality earphones at affordable prices.</p>
    
    <h2>Featured Products</h2>
    <ul>
      <li>Earphone 1</li>
      <li>Earphone 2</li>
      <li>Earphone 3</li>
    </ul>
    
    <h2>Contact Us</h2>
    <p>If you have any questions or inquiries, please feel free to contact us using the information below:</p>
    
    <p>Email: info@earphonesite.com</p>
    <p>Phone: 123-456-7890</p>
  </main>
</body>
</html>