Creating multicolor links in HTML

5 replies
  • WEB DESIGN
  • |
Is a possibility to create multicolor links in HTML? I would like to make my links look different. Any help? Thanks in advance.
#creating #html #links #multicolor
  • Profile picture of the author mike-seo
    Originally Posted by jasonmark View Post

    Is a possibility to create multicolor links in HTML? I would like to make my links look different. Any help? Thanks in advance.
    Yes, you can do this from your CSS
    {{ DiscussionBoard.errors[3206515].message }}
  • Profile picture of the author ckmcharles
    You can try this:

    <a href="http://yourlink.com" style="color: #COLORCODE">Your Anchor Text<a/>

    Replace #COLORCODE with the code of the color you want... google "html color codes" if you need reference...

    Hope this helps...

    Charles
    {{ DiscussionBoard.errors[3206960].message }}
  • Profile picture of the author philipwilson3249
    Use CSS within html links. It will solve your problem.
    {{ DiscussionBoard.errors[3209937].message }}
  • Profile picture of the author Ken Durham
    You can make every single letter a different color if desired;
    <a href="http://yourlink.com">You<span style="color: #COLORCODE">r</span> Anchor <span style="color: #COLORCODE">Text</span><a/>
    Signature

    yes, I am....

    {{ DiscussionBoard.errors[3214727].message }}
  • Profile picture of the author Bob Phantom
    Why would you use HTML??? use CSS much better!!!

    a:link{
    color:
    }
    a:visted{
    color:
    }
    a:active{
    color:
    }
    a:hover{
    color:
    }
    {{ DiscussionBoard.errors[3326772].message }}

Trending Topics