Joined: 22 Feb 2006 Posts: 8248 Location: Fingerlakes - NY usa
HTML Tips (not for use on this forum)
Hyperlinks
The <A> or Anchor tag is used in creation of hyperlinks. This tag uses the attribute: <A HREF="filename.extention"> to identify the file to link to. Before closing this tag, provide text for the file:
If you want the link to open a new window or tab, add:
<A HREF="document.extension" target="_blank">
Wed Nov 08, 2006 10:03 am
Sponsor
madthumbs
Joined: 22 Feb 2006 Posts: 8248 Location: Fingerlakes - NY usa
Images
*note: You should not steal images and bandwidth from sites. Re-host images on a site like: http://www.tisng.com/ so you're not stealing bandwidth, or use myspace for free image hosting.
For this you'll use the image tags
Syntax:
<img src="url of your image"></img>
*Note: On some sites; you don't need or don't want the closing </img> tag. If the site you're posing on is using XTML, you will want the closing tag.
You can surround this code with the Hyperlink code to make the image link to a webpage.
If you upload an image to a site like myspace: just go to the image, right click on it, and choose "copy image location" or something like that (depends on browser). Then you can paste this between the quotes in the above code.