There are so many things that you can do with links that entire books could be written about the subject. Even without getting into the more complex and special technique, you can do quite a few things. Link Colors
<body link="#000000" vlink="#800000" alink="#FFFF00"> The "link" attribute changes the color of an "unclicked" link, "vlick" changes visited links and "alink" changes active link colors. You can also use cascading style sheets, which is further described in the CSS section of this web site. Targeting Your Link
You may want to review the tutorial on frames before going any further. Okay, to get the desired page to display in a different frame, you specify the name of the frame in the "target" attribute of the "A" tag. Here's an example: Display <a href="example-lower_right_hand_pag.htm" target="rright">Page 2</a> This displays on the page as:
Setting A Title
Did you know that you can also do this with hyperlinks? It's very simple. Just include the TITLE attribute on your "A" tags. An example is shown below. Here is an example of a <a href="tutorial010.htm" TITLE="You can see the tool tip, right?">tool tip</a> This displays as shown below. To see the tool tip, hover your cursor over the hyperlink for a few seconds.
|