JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrapper">
    <div>
        <h3>Example</h3>
        <span>Example</span>
    </div>
    <div>
        <div></div>
        <div></div>
        <div></div>
    </div>
    <div id="avatar">
        <div></div>
    </div>
    <div id="desc">
        Description
    </div>
</div>

CSS

#wrapper > div {
    display: inline-block;
}

h3 {
    margin-bottom: 5px;
}

#wrapper > div:first-of-type {
    margin-right: 10px;
    vertical-align: 20px;
}

#wrapper > div:nth-of-type(2) {
    vertical-align: 20px;
}

#wrapper > div:nth-of-type(2) > div {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid tomato;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
}

#avatar {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 3px solid orange;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    margin-left: 10px;
}

#desc {
    vertical-align: top;
    color: gray;
    vertical-align: 40px;
    margin-left: 20px;
}