Links are really important in Wapka. It makes a connection bridge between all your pages. A link is by default of purple color unless, until you manipulate it with some codings. Today I'm going to tell you the trick to change the color of a link easily. Just abide by the tutorial carefully.
You can change the color of a link either by CSS class or style attribute. But CSS is harder to work with. So we shall go with the later one.
In HTML links are made like this:
But to colorify it with green color we have to use style attribute. For example:
You can change the color of a link either by CSS class or style attribute. But CSS is harder to work with. So we shall go with the later one.
In HTML links are made like this:
<a href="source_url"> LINK </a>.
RESULT: LINK
But to colorify it with green color we have to use style attribute. For example:
<a href="source_url" style="color:#33CC33">LINK</a>
After # you can use any color code. I have prepared a list of color codes. You can pick any code from there and colorify your link.
0 comments:
Post a Comment