|
Changing your link for the whole pageYou can change the look of your links for your entire page by changing the attributes in the <body> tag. Below is an example:
<body link="#000000" vlink="#000000" alink="#000000">
With this you can change the link color, visited link color, and active link color. To do more, you can use CSS (cascade style sheet) to change it. You can change font size, face, color, etc. You will need to add CSS to the <head> section of your page. So let's take a look at another example:
<head>
<style type="text/css">
a:link {color: #000000; font-size: 12pt; text-decoration: none;} a:visited {color: #000000; font-size: 12pt; text-decoration: none;} a:active {color: #000000; font-size: 12pt; text-decoration: none;} a:hover {color: #ff0000; font-size: 14pt; text-decoration: none; font-weight: bold;} </style> </head> The a in the CSS code represents links just like how the <a> tag represents links in HTML. And, the a:hover will tell the browser that the color and size of the linking text should change on mouseover. Hovering links is explained in the section above. |