<div class="container">
<div class="item">
<img src="https://images.unsplash.com/photo-1574451966652-62debbb4c221?q=50&w=100&h=100&auto=format&fit=crop" alt="">
<h1>Some awesome features</h1>
<p>Donec sed odlo dul. Aenean lacinia bibendum nulla
sed consectetur. Nulla vitae elit libero, apharetra augue.</p>
</div>
<div class="item">
<img src="https://images.unsplash.com/photo-1518887499460-71d222eed89d?q=50&w=100&h=100&auto=format&fit=crop" alt="">
<h1>Some awesome features</h1>
<p>Donec sed odlo dul. Aenean lacinia bibendum nulla sed consectetur. Nulla vitae elit libero, apharetra augue.</p>
</div>
<div class="item">
<img src="https://images.unsplash.com/photo-1535083783855-76ae62b2914e?q=50&w=100&h=100&auto=format&fit=crop" alt="">
<h1>Some awesome features</h1>
<p>Donec sed odlo dul. Aenean lacinia bibendum nulla sed consectetur. Nulla vitae elit libero, apharetra augue.</p>
</div>
</div>
.container {
display: flex;
justify-content: space-around;
background: #F6F5F3;
width: 830px;
margin: 0 auto;
}
.item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding:2rem 1rem;
}
.item img {
border-radius: 50%;
margin-bottom: 1rem;
}
.item h1 {
font-size: 1.5rem;
font-family: sans-serif;
margin: 1rem 0;
text-align: center;
}
.item p {
text-align: center;
font-family: monospace;
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.