http://fishcaro.crosswinds.net/day_10_links.htm
INDEX CARD #10:
INTRODUCTION TO LINKS (10a)How do you know, when you look at a web document, where the links are? This depends on both the browser and the user's preferences. Usually, links are underlined, and in some noticeable color. In most browsers, you can set your own preference for how links are displayed: both links you have already visited, and ones that you haven't yet visited. What's the most basic information required in a link? When you create a link, you'll want (at a minimum) to specify two things:
|
A BASIC SAMPLE LINK (10b)link_to_me.htm " that you want to create a link to. And, you want your web document to display "Please click here!" as the clickable area. Use the ANCHOR container tag "<A> ... </A> " with the HREF
attribute, like this:
<A HREF="link_to_me.htm"> Please click here! </A>
What's this "HREF=" stuff? "HREF" stands for "Hypertext REFerence". (To "refer" means to direct to a source for help or information. So... you're REFERRING the user to another source!) You put the address of where you want to go inside the quotation marks. This "address" is more precisely known as a URL (Uniform Resource Locator). More on URLs in a future lesson. Where does the stuff that I want to be the "clickable area" go? The anchor tags <A HREF="URL"> </A> |
Printable version of Index Card 10a
Printable version of Index Card 10b
WORKSHEET #10:
ASSIGNMENT #10: