Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <section id="reviwes">
  <div class="container">
    <h2 class="text-center">Отзывы наших клиентов</h2>
    <h4 class="text-center my-5 pb-5">Что говорят наши клиенты</h4>
    <div id="carouselReviews" class="carousel slide" data-ride="carousel">
      <ol class="carousel-indicators">
         <li data-target="#carouselReviews" data-slide-to="0" class="active"></li>
          <li data-target="#carouselReviews" data-slide-to="1"></li>
          <li data-target="#carouselReviews" data-slide-to="2"></li>
       </ol>
       <div class="carousel-inner">
         <div class="carousel-item active">
           <div class="row">
             <div class="offset-sm-2 col-sm-3 col-md-2"><img src="https://html-plus.in.ua/wp-content/uploads/2019/01/lara.jpg" class="img-fluid rounded-circle d-block m-auto pb-3" alt="Лариса Уварова"></div>
           <div class="offset-md-1 col-md-5 col-sm-5">
      <div class="review">
       Спасибо за быстрый заказ. Отличный сервис. С менеджером было легко и приятно общаться.
       <div class="review-author">
         Лариса Уварова
       </div>
     </div>
   </div>
 </div>
</div>
 <div class="carousel-item">
   <div class="row">
      <div class="offset-sm-2 col-sm-3 col-md-2"><img src="https://html-plus.in.ua/wp-content/uploads/2019/01/igor.jpg" class="img-fluid rounded-circle d-block m-auto pb-3" alt="Игорь Минаев"></div>
      <div class="offset-md-1 col-md-5 col-sm-5">
    <div class="review">
     Отличный уровень сервиса. Доставили посылку за пару дней. А цены очень приемлемые за подобную доставку.
    <div class="review-author">
      Игорь Минаев
    </div>
   </div>
  </div>
</div>
</div>
<div class="carousel-item">
  <div class="row">
    <div class="offset-sm-2 col-sm-3 col-md-2"><img src="https://html-plus.in.ua/wp-content/uploads/2019/01/mila.jpg" class="img-fluid rounded-circle d-block m-auto pb-3" alt="Мила Синицина"></div>
      <div class="offset-md-1 col-md-5 col-sm-5">
        <div class="review">
         Очень понравился товар. Посылка пришла быстро. Заказывыла подруге в подарок. Теперь хочу для себя.
        <div class="review-author">
          Мила Синицина
        </div>
      </div>
     </div>
    </div>
  </div>
 </div>
 <a class="carousel-control-prev" href="#carouselReviews" role="button" data-slide="prev">
   <span class="carousel-control-prev-icon" aria-hidden="true"></span>
   <span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselReviews" role="button" data-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
      <span class="sr-only">Next</span>
  </a>
</div>
</div>
 </section>

              
            
!

CSS

              
                #reviwes {
  padding-top: 40px;
  padding-bottom: 80px;
  font-family: 'Rubik', sans-serif;
}
.review-author {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    text-transform: uppercase;
}

.carousel-indicators {
    bottom: -58px;
}

.carousel-indicators li {
    background-color: rgba(0, 0, 0, .5);
}

.carousel-indicators .active {
    background-color: #000;
}


.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}

.carousel-control-prev-icon {
       background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
       background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

@media (max-width: 575px) {
    .review {
        padding-left: 40px;
        padding-right: 20px;
    }
}
              
            
!

JS

              
                
              
            
!
999px

Console