OT: How to post links

craftech wrote on 3/31/2005, 3:24 AM
I thought maybe some of you who don't know how to do this could benefit from this post so here goes.
I usually open two instances of the browser. One to post and the other to copy and paste links.

start with < a href="

Keep in mind, in order for me to show this without actually creating a link I had to put a space between the < and the letter "a". Don't leave a space! There IS a space between the "a" and the "href"

Then highlight and copy the url from the address bar in the other browser window that you want to link to.

Paste it after the quotation marks then add another quotation mark at the end followed by one of these >

< a href="http://gofetchabone">
Again, no space between < and the letter "a".

After that put a word or name in that you want to have a person click on such as .......This.........or..........Link..........etc followed by < / a > with NO spaces.

So you have < a href="http://gofetchabone">Bone< / a >

Again, the Only space is between the "a" and the "href" No spaces anywhere else UNLESS you want to put them in the name to click on. Instead of Bone you could out Fetch A Bone. Spaces will work there and as many words as you want can be used.

John

Comments

epirb wrote on 3/31/2005, 3:56 AM
Sony this would be a good sticky!
I got a little postit note on my monitor for this thats gettting kinda ragged.
(I often forget how to do it so I need the little note , anybody else the same way?)
Chienworks wrote on 3/31/2005, 4:56 AM
Well, considering i spend half my day writing HTML code, i don't have trouble remembering at all.

If you want a very concise example all together the way you have to type it ...

<a href=http://www.vegasusers.com/vidshare/>Post your videos here</a>

The italicized part is the web link which must start with http://
The bold part is what people will see to click on, and can be anything. I usually copy the web link for this part too so that people will know what URL they are getting.
B_JM wrote on 3/31/2005, 5:31 AM
almost all forums will automatically convert urls into clickable links or have "quote" , "link" , "url", etc options....

this is one of the very few that doesnt ...
busterkeaton wrote on 3/31/2005, 11:13 AM
Is this because of that bad link I posted when I forgot to close my quotes and I made the whole post including "Reply" a hotlink? :)

That screwed up pretty bad. I couldn't even hit "Edit This Message" or "Delete This Message" to fix it.

So remember to close your quotes.
BillyBoy wrote on 3/31/2005, 11:41 AM
In the context of embedding HTML in THIS forum, the syntax needs to be strick. Make just one tiny error like a missing ending bracket and what happens if anything is up in the air.

Nice of John to post a mini tutorial on how to do it, would be better if this forum supported HTML directly like most do.
bStro wrote on 3/31/2005, 12:30 PM
< a href="http://gofetchabone">Bone< / a >

FYI, I don't know if this is true since the forum changes went into effect, but it used to be that if I put quotes around a URL and later went back to edit my post, the link would get screwed up. For that reason, I never use quotes in URLs on this forum.

Rob
Chienworks wrote on 3/31/2005, 1:29 PM
The only time you need quotes around the URL is if it includes spaces. Since you should never put spaces in URLs then this shouldn't be a problem. If for some bizarrely perverse reason you do put spaces in, you can code them as %20 instead of typing the space bar and all will be well. But, you really should never put spaces in URLs.
TorS wrote on 3/31/2005, 9:37 PM
The W3C organisation recommends quotes around addresses in links, and it is a good habit to get into. I suppose it ensures greater browser compatibility. What messes up a post is if you put quotes at one end of the address and not at the other.
Tor
Redd wrote on 4/1/2005, 6:27 AM
I've seen links here posted two ways. One uses the present window to transfer to the new link, and other opens a new window to the new link. The second one is more helpful IMO. How is the link that opens a new window made?
Chienworks wrote on 4/1/2005, 6:44 AM
<a href=http://www.rchv.com/wallpaper/ target=_new>Free Desktop Wallpaper</a>

Free Desktop Wallpaper

setting target=_new forces the link to open in a new window. You can also do this manually with any link by right-mouse-button clicking on it and choosing "open in new window".
B_JM wrote on 4/1/2005, 6:55 AM
or by using firefox and tab mix extension
Redd wrote on 4/1/2005, 7:48 AM
Got it, much thanks.