Remove Underlined Links

A Place To Talk About HTML,SHTML,XHTML, HTM,XML,CSS, JS,PHP,,Etc
Post Reply
User avatar Romania
Dragosvr92
Administrator
Administrator
Posts: 1128
Joined: 11 Sep 2009, 06:04
Name: Dragoș-Valentin Rădulescu
Location: Romania
Age: 32
Contact:

Remove Underlined Links

Post by Dragosvr92 »

Don't like underlined links to your webpage?
add the Fallowing Code into your HTML Page and Save the file

Code: Select all

	<style type="Text/CSS">

	a 
	{text-decoration:none
	}

        </style>
or if you would like to use just an css file add this to your css file

Code: Select all

	a 
	{text-decoration:none
	}
Formerly known as TheKiller
Post Reply