JSFiddle - React, Tailwind, and code Playground

by klierik

HTML

<div class="container">

  <div class="header">
    <div class="header-left">
      <div class="product">
        <h1>Product Name</h1>
        <ul class="sps">
          <li>Put on this page information about your product</li>
          <li>A detailed description of your product</li>
          <li>Tell us about the advantages and merits</li>
          <li>Associate the page with the payment system
          </li>
        </ul>
      </div>
    </div>
    <div class="header-right">
      <div class="banner"> </div>
    </div>
  </div>
</div>

CSS

body {
  margin: 0;
  font-family: Arial;
  font-style: normal;
}

.container {
  margin: 0;
  width: 90%;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  min-height: 223px;
  background-color: #445162;
  color: white;
  padding: 50px 50px;
}

.header-left {}
.header-right {
    width: 35%;
}

.product {
  width: 47%;
}

.product>h1 {
  font-size: 60px;
  margin: 0;
}

.product:after {
  content: "";
  display: block;
  clear: both;
}

.banner {
  background-color: white;
  min-height: 243px;
}

.sps>li {
  font-size: 20px;
  line-height: 36px;
  list-style-image: url(images/check_icon.png)
}