Html Questions

Discussion in 'Gaming' started by .TaYFoN., Feb 6, 2007.

  1. .TaYFoN.

    .TaYFoN. Well-Known Member

    Posts:
    1,337
    Likes Received:
    0
    Joined:
    Jul 20, 2005
    Hey :)
    I'm looking for two simple html codes, I kind of forgot how to get them to work..
    one is the 'add us to favourites' code and another code is a rollover underline text, so when you go over the text with the cursor, it adds an underline to the text.

    thanks :)
     
  2. Under619Taker

    Under619Taker Senior Member

    Posts:
    542
    Likes Received:
    0
    Joined:
    Dec 10, 2004
    Add to Favorites:

    Code:
    Click here to add this page to your favorites
    the double underline is actually CSS, before the last head tag "</head>" insert this:

    Code:
    <style type="text/css">
    
    a:hover
    {text-decoration: underline;}
    
    </style>
     

Share This Page