Not sure how this can be done WITHOUT CSS. You can put the CSS in the <style> tag within an html file. Give this a try:
<style type="text/css">
<!--
a {text-decoration: none;}
-->
</style>
Put that inside the head and I think it should work.
Edit:
I should be telling you to get in the habit of linking your CSS to your HTML file, it is more practical. You would do that by making a new .css file. Put
a {text-decoration: none;}
and in your HTML file put
<link rel="stylesheet" type="text/css" href="PATH_TO_FILE.css" >
That should be put inside the <head> tag. Don't begin a bad habit 8]
Last edited by ForeverIrise; 10-06-2005 at 03:36 AM.
The entire world is counting on me, and they don't even know it.
Bookmarks