i know there's a code for links not to be underlined. I knew it but i forgot. so can u guys tell me as soon as possible?
Put this inside the <head></head> tags: Code: <style> A:link {text-decoration: none; color: #000000} A:visited {text-decoration: none; color: #000000} A:active {text-decoration: none; color: #000000} A:hover {text-decoration: underline; color: #000000} </style> You can change what color you want links to be on that page, what color you want visited links, what color you want active links to be, and what color you want it to be while hovering over it.(as well as text decoration for all four).
That, and you can also use CSS. It's more advanced, but you can make your links more better with that. I'll post a link to the tutorial soon.