Creating links without underlines
Although underlines help us to identify links on web pages, there are some instances where you may want to remove underlines from certain links. It's easy to achieve this effect using "Cascading Style Sheets" (CSS).
Removing underlines from selected links
If you want to remove underlines from certain links, but not all links on a page, simply add STYLE="text-decoration: none" to the tag starting the link. Example:
Before (regular link):
web-tech-solutions.blogspot.com//">
Sample Link
After (after stylizing the link to remove underlines):
web-tech-solutions.blogspot.com//"
STYLE="text-decoration: none"
>
Sample Link
Removing underlines from all links on a page
To remove underlines from all links on your page, you can use the following style sheet tags:
How above style sheet tags should be placed inside a page:
==========================================
By web tech