Hi,
Ive been using <.strong.> </.strong.> exclusively to apply a different color to my text
How can i create additional tags called <blue> <orange> etc in order to apply other colors to my special headings and text block ?
Hey kilimats,
Please use css class to create custom styles.
Example of html
<span class="blue"> your text </span>
<span class="orange"> your text </span>
<span class="yellow"> your text </span>
Add this to your custom css
.blue{ color:blue; }
.orange{ color:orange; }
.yellow{ color:blue; }
Best regards,
Vinay