Покажу сразу примером:
Как лучше, так:
.y { color: #f4f200; }
.b { color: #131313; }
.mb10 { margin-bottom: 10px; }
.mt10 { margin-top: 10px; }
<h3 class="y mt10">HELLO</h3>
<a href="#" class="b mb10">LINK</a>
<a href="#" class="y">LINK</a>
<h2 class="mt10 mb10">HELLO</h2>
ИЛИ ТАК:
<h3 class="title">HELLO</h3>
<h3 class="title2">HELLO</h3>
<a href="#" class="title3">HELLO</a>
.title { color:#f4f200; font-weight: bold; margin-bottom: 10px; }
.title2 { color:#131313; font-weight: regular; margin-bottom: 10px; }
.title3 { color:#f4f200; font-weight: regular; margin-top: 20px; }