Links that aren't underlined

admin

Administrator
Staff member
There has to be a way of creating links that aren't underlined. I believe I've seen it on other pages. How do you create a non-underlined link?<br />
<br />
This is possible isn't it?<br />
<br />
Angela<!--content-->you can use a style sheet to declare this in the header for ALL links, or for some.<br />
<br />
You can also use an inline style.<br />
<br />
<A href=http://www.htmlforums.com/archive/index.php/"#" style="text-decoration: none">khgdjuh</a><!--content-->Yes it's possible as Dr. Web mentioned. To use this for all links, including visited and hover, place this within your <head> tags:<br />
<br />
<br />
<style type="text/css"><br />
<!--<br />
A:link {text-decoration: none;}<br />
A:visited {text-decoration: none;}<br />
A:hover {text-decoration: none;}<br />
--><br />
</style><!--content-->
 
Back
Top