Is there a better or cleaner way to achieve having a left margin of 10px for some (not all) of my H2 headlines compared to the regular ones? Here is the code I have tried:
HTML
<h2 class ="marginleft10px">Blablabla</h2>
CSS
h2 {
color: #2970A2;
font-weight: 300;
font-size: 18px;
}
.marginleft10px {
margin-left: 10px;
}