<!DOCTYPE html>

<html>

<head>

  <title>Retro Kicks - Homepage</title>

  <style>

    /* Reset default styles */

    body, html {

      margin: 0;

      padding: 0;

      font-family: Arial, sans-serif;

    }

   

    /* Header styles */

    header {

      background-color: black;

      color: white;

      padding: 20px;

      text-align: center;

    }

   

    h1 {

      margin: 0;

    }

   

    /* Navigation styles */

    nav {

      background-color: red;

      padding: 10px;

      text-align: center;

    }

   

    nav ul {

      list-style-type: none;

      margin: 0;

      padding: 0;

    }

   

    nav ul li {

      display: inline;

      margin-right: 10px;

    }

   

    nav ul li a {

      color: white;

      text-decoration: none;

    }

   

    /* Sidebar styles */

    .sidebar {

      background-color: black;

      color: white;

      width: 200px;

      height: 100vh;

      position: fixed;

      top: 0;

      left: 0;

      padding: 20px;

    }

   

    /* Content styles */

    .content {

      margin-left: 220px;

      padding: 20px;

    }

   

    /* Cover photo styles */

    .cover-photo {

      width: 100%;

      height: 300px;

      background-image: url('cover-photo.jpg');

      background-size: cover;

      background-position: center;

      margin-bottom: 20px;

    }

   

    /* Search feature styles */

    .search {

      margin-bottom: 20px;

    }

   

    .search input[type="text"] {

      width: 100%;

      padding: 10px;

      font-size: 16px;

    }

   

    .search input[type="submit"] {

      background-color: red;

      color: white;

      border: none;

      padding: 10px 20px;

      font-size: 16px;

      cursor: pointer;

    }

  </style>

</head>

<body>

  <header>

    <h1>Retro Kicks</h1>

  </header>

 

  <nav>

    <ul>

      <li><a href="#">Home</a></li>

      <li><a href="#">About</a></li>

      <li><a href="#">Affiliate</a></li>

      <li><a href="#">Wholesale</a></li>

      <li><a href="#">Store</a></li>

      <li><a href="#">Contact</a></li>

    </ul>

  </nav>

 

  <div class="sidebar">

    <h2>Ads</h2>

    <p>Place your ads here</p>

  </div>

 

  <div class="content">

    <div class="cover-photo"></div>

   

    <div class="search">

      <form action="#" method="get">

        <input type="text" name="search" placeholder="Search...">

        <input type="submit" value="Search">

      </form>

    </div>

   

    <h2>Welcome to Retro Kicks!</h2>

    <p>Content of the homepage goes here...</p>

  </div>

</body>

</html>