Your best option is to put a special class, say, on the containing <p> and then target it in you style sheet: e.g.
HTML
Code:
<p class="start"><a href="http://mindfulnessangermanagement.com/anger-management-programs/">CLICK HERE TO<br>
GET STARTED NOW</a></p>
CSS
Code:
.start a {
font-weight: bold;
font-size: 16px;
color: #3ca328;
}
You could, of course, place all those styles inline (that is, in the HTML), but it's not very efficient—especially if you want to use the same style somewhere else.
Code:
<p><a style="font-weight: bold; font-size: 16px; color: #3ca328;" href="http://mindfulnessangermanagement.com/anger-management-programs/">CLICK HERE TO<br>
GET STARTED NOW</a></p>
Bookmarks