<h1>Learning on Hexlet</h1>
<ul class="hexlet-ul">
<li>A great deal of theory</li>
<li>Plenty of practice and additional assignments</li>
<li>Comprehensive projects to consolidate knowledge</li>
</ul>
body {
padding: 20px;
font: 18px/1.5 sans-serif;
}
.hexlet-ul {
list-style: none;
}
.hexlet-ul li {
position: relative;
margin-bottom: 20px;
}
.hexlet-ul li::before {
position: absolute;
left: -30px;
width: 20px;
height: 20px;
background-image: url(https://assets.codepen.io/1425525/hexlet_logo.png);
background-repeat: no-repeat;
background-size: cover;
content: '';
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.