<div class="wrapper">
  <ul class="tags">
    <li class="pill">Item 1</li>
    <li class="pill">Item 2</li>
    <li class="pill">Item 3</li>
    <li class="pill">Item 4</li>
    <li class="pill">Item 5</li>
    <li class="pill">Item 6</li>
    <li class="pill">Item 7</li>
    <li class="pill">Item 8</li>
    <li class="pill">Item 9</li>
    <li class="pill">Item 10</li>
  </ul>
</div>

<hr>

<div class="wrapper">
  <div class="card">
    <img src="https://ishadeed.com/assets/shadeed.jpg" alt="" class="card-icon">
    
    <h2>Cart title</h2>
    
    <p>Some description.</p>
  </div>
</div>

<hr>

<div class="wrapper footer">
  <div class="footer-item">
    <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/NASA_logo.svg/1200px-NASA_logo.svg.png" alt="">
  </div>
  <div class="footer-item">
    <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/NASA_logo.svg/1200px-NASA_logo.svg.png" alt="">
  </div>
</div>

<hr>

<div class="wrapper">
  <div class="books">
    <h2>By Ahmad Shadeed</h2>
  </div>
</div>
/********** Tags **********/
.tags {
  text-align: center;
  margin-bottom: -0.5rem;
}

.pill {
  display: inline-block;
  border: 2px solid #74bffb;
  border-radius: 100px;
  font-size: 14px;
  padding: 6px 16px;
  margin-bottom: 0.5rem;
}

/********** Card **********/
.card {
  background: #fff;
  width: 200px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 3px 10px 0 rgba(#000, 0.1);
  margin-left: auto;
  margin-right: auto;

  h2 {
    font-weight: bold;
  }

  > * + * {
    margin-top: 8px;
  }
}

.card-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: grey;
  border-radius: 50%;
}

/********** Footer **********/
.footer {
  display: flex;
}

.footer-item {
  flex: 0 0 50%;
  outline: solid 1px lightgrey;

  img {
    width: 100px;
  }

  &:first-child {
    text-align: right;
  }

  &:last-child {
    text-align: center;
  }
}

/********** Books **********/
.books {
  background: url('https://ishadeed.com/assets/books.jpg') center/cover no-repeat;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 3px 10px 0 rgba(#000, 0.1);
  height: 300px;
  padding: 0.5rem;
  
  h2 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    writing-mode: vertical-lr;
    height: 100%;
    text-align: center;
  }
}

/* General Styles */
body {
  font-family: 'Arial';
}

.wrapper {
  max-width: 550px;
  margin: 2rem auto;
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.