Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Hyperlinks on Microsoft Front Page 2000...?
How do you do a hyperlink not underlined on Front Page - without doing a button and without doing a picture?
1 Answer
- ?Lv 51 decade agoFavorite Answer
Use a style sheet and add this to it.
a:link {
color: #FF0000;
text-decoration: none;
}
a:hover {
color: #009933;
text-decoration: underline;
}
A:link of course is the link style, color is a red, and no underline, text-decoration: none
A:hover is for when the mouse is over the link, it will go green and put an under line in place.
Just take a look around for basic CSS and you'll find lots of easy to understand tutorials,