The Good Old LinkWithout the link, the Web would simply not exist. It's the heart and soul of the Web and, as such, should be treated with kindness! absolute and relative. Absolute linking is using the exact address to the file you'd like the link to point to. This means including the domain, any subdirectories, and the filename (see Example 2-9). Example 2-9. An absolute address examplehttp://www.molly.com/books/springboard.html Or, if it's in a subdirectory, you use the subdirectory: books/springboard.html. You can move up from a directory into another: ../books/springboard.html. And on some servers, you can use a global identifier to signify "wherever this document is found on this server": /includes/springboard.html.
In the link samples coming up, you'll see me use a range of absolute and relative linking. Standard links are generated using the anchor element <a>. . .</a>. The hypertext reference attribute (href) is used to denote the link address, and text content within the opening and closing tags will appear as linked text (see Example 2-10). Example 2-10. Linking to an absolute address<a href="http://www.molly.com/books/aw.html">Read about HTML and CSS</a> Figure 2-9 displays the results. Figure 2-9. The incredible hyperlink.
title attribute is very helpful to use. Here, you'll add the attribute and a more detailed description of the link (see Example 2-11). Example 2-11. Adding the title attribute and value<a href="http://www.molly.com/books/springboard.html" title="read about the upcoming book As the mouse passes over the link, a ToolTip appears along with the additional details (see Figure 2-10). Figure 2-10. Using a title and description makes your links more accessible.
Another important attribute for link accessibility is tabindex, which enables you to denote links in a custom, specific sequence for those individuals who are tabbing instead of clicking through the page. So if you wanted a link to be the second most important link on the page, you would give the link a tabindex value <a href="springboard.html" tabindex="2">. . .</a>. |
| |||||||||||||||||||