In your HTML, wrap your price in span tags with an appropriate class on them
Right at the bottom of your CSS, add the styling:
And I would very much recommend the CSS tutorial posted earlier. W3schools taught me all I know
Code:
<span class="myprice">your price goes here</span>
Code:
span.myprice { color: red; font-weight: bold; }
Comment