Links and Images


Now we're getting somewhere. So far you've learned how to begin your page and manipulate text. But these aren't much use without being able to link to other pages or put in images.

Links
Let's start with links. All links have these features: <a href="Site Name.htm"> Text </a> where Site Name.htm is the name of the file to be linked to and Text is what the browser will show underlined.
Local Links - Local links go to pages within the same directory. All you need to type is : <a href="index.htm">
Global Links - Global links go to pages outside of your current directory. These can include pages on your site, but in different directories. For these, you need the entire link such as : <a href="http://www.webcrawler.com">

Images
Images are put in with the <img> tag. Example:
<img src="Image Name" height=10 width=40 alt="Alternate Text "> where: