Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 08-01-2009, 01:09 PM   #1
I.C.Hope
War Room Member
 
Intrepreneur's Avatar
 
Join Date: Apr 2009
Location: Northern Ireland
Posts: 2,575
Thanks: 453
Thanked 243 Times in 191 Posts
Contact Info
Send a message via Skype™ to Intrepreneur
Default a href alternatives?

I know there are alterntives to a href, i.e [url =] but I also know there are more. Im struggling to find them all and need to know a few different ways to create an anchor text link.

Thanks

Best Wishes
Intrepreneur.

Top5Best4You

500 PR2 - PR6 links for $10 with report. PM me. Instantly created, drip fed. Google friendly.
Intrepreneur is offline   Reply With Quote
Old 08-01-2009, 01:14 PM   #2
One Man Army
War Room Member
 
GuerrillaIM's Avatar
 
Join Date: Jul 2008
Location: London, UK
Posts: 1,893
Thanks: 93
Thanked 314 Times in 183 Posts
Default Re: a href alternatives?

Are you talking about in HTML? In HTML you need to use a href="".

[URL] Is BB code it only works in forums usually. Different forum software sometimes has a different syntax, it's down to the developers when they make it.

GuerrillaIM is offline   Reply With Quote
Old 08-01-2009, 01:18 PM   #3
I.C.Hope
War Room Member
 
Intrepreneur's Avatar
 
Join Date: Apr 2009
Location: Northern Ireland
Posts: 2,575
Thanks: 453
Thanked 243 Times in 191 Posts
Contact Info
Send a message via Skype™ to Intrepreneur
Default Re: a href alternatives?

Quote:
Originally Posted by GuerrillaIM View Post
Are you talking about in HTML? In HTML you need to use a href="".

[url] Is BB code it only works in forums usually. Different forum software sometimes has a different syntax, it's down to the developers when they make it.
Oh yes I know of the url= and a href but the other ways of doing it, that I need to know, for some reason I can't find them.

I have an idea there is one that goes something like link [url] anchor text, but cant find them all.

Thanks for your help.

Best Wishes
Intrepreneur.

Top5Best4You

500 PR2 - PR6 links for $10 with report. PM me. Instantly created, drip fed. Google friendly.
Intrepreneur is offline   Reply With Quote
Old 08-01-2009, 01:26 PM   #4
Senior Warrior Member
War Room Member
 
Mohsin Rasool's Avatar
 
Join Date: Jan 2006
Location: Pakistan
Posts: 3,327
Thanks: 441
Thanked 265 Times in 123 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Default Re: a href alternatives?

Quote:
Originally Posted by Intrepreneur View Post
I know there are alterntives to a href, i.e [url =] but I also know there are more. Im struggling to find them all and need to know a few different ways to create an anchor text link.

Thanks

Best Wishes
Intrepreneur.
Hi,

As far as i know there are no alternatives to href in html.

but there are wrappers or application specific codes like the BB code as you mentioned
above [url] .... so let us know in which application/script you want to user alternative,
so you read the help files of this script and you find the all code you needed...

As every application , at the end of the day, has to pick the input and map this to
original html code , i.e. href.... so it really depends on the application you are using,
which uses any custom code in the front-end for some html known tags to stop html spam..

Hope this make sense, or i am missing something bro?

Regards,
Mohsin

Mohsin Rasool is offline   Reply With Quote
Old 08-01-2009, 01:27 PM   #5
One Man Army
War Room Member
 
GuerrillaIM's Avatar
 
Join Date: Jul 2008
Location: London, UK
Posts: 1,893
Thanks: 93
Thanked 314 Times in 183 Posts
Default Re: a href alternatives?

Are you trying to drop them into a forum? This link may help - BBCode - Wikipedia, the free encyclopedia

GuerrillaIM is offline   Reply With Quote
Old 08-01-2009, 01:30 PM   #6
I.C.Hope
War Room Member
 
Intrepreneur's Avatar
 
Join Date: Apr 2009
Location: Northern Ireland
Posts: 2,575
Thanks: 453
Thanked 243 Times in 191 Posts
Contact Info
Send a message via Skype™ to Intrepreneur
Default Re: a href alternatives?

Quote:
Originally Posted by GuerrillaIM View Post
Are you trying to drop them into a forum? This link may help - BBCode - Wikipedia, the free encyclopedia
No, not a forum.

I'm just looking as many different ways to create an anchor text link, so when I arrive at a place I see everyone else is using some sort of code to generate an anchor text backlink, I can do the same.

Cheers.

Top5Best4You

500 PR2 - PR6 links for $10 with report. PM me. Instantly created, drip fed. Google friendly.
Intrepreneur is offline   Reply With Quote
Old 08-01-2009, 01:34 PM   #7
Advanced Warrior
War Room Member
 
Barbara Eyre's Avatar
 
Join Date: Jan 2006
Location: North Carolina
Posts: 903
Thanks: 96
Thanked 31 Times in 25 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Default Re: a href alternatives?

In HTML, the only way to do links is:

Code:
<a href="http://www.thesite.com">Anchor Text</a>
The only other thing I can think of what you are trying to say is:

Code:
<a href="http://www.thesite.com/page.html#keyterm">Click here</a> to read up more on keyterm.
And that hops you to either further down your page or to another page on your site.

Barbara Eyre is offline   Reply With Quote
Old 08-01-2009, 01:34 PM   #8
Senior Warrior Member
War Room Member
 
Mohsin Rasool's Avatar
 
Join Date: Jan 2006
Location: Pakistan
Posts: 3,327
Thanks: 441
Thanked 265 Times in 123 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Default Re: a href alternatives?

Quote:
Originally Posted by Intrepreneur View Post
No, not a forum.

I'm just looking as many different ways to create an anchor text link, so when I arrive at a place I see everyone else is using some sort of code to generate an anchor text backlink, I can do the same.

Cheers.
Bro you have to specify the place, then you have to find the script/software they are using,
and then in their help section you will find the all place/script/application specific code/tags they use as an alternative to href....

Regards,
Mohsin

Mohsin Rasool is offline   Reply With Quote
Old 08-01-2009, 01:36 PM   #9
I.C.Hope
War Room Member
 
Intrepreneur's Avatar
 
Join Date: Apr 2009
Location: Northern Ireland
Posts: 2,575
Thanks: 453
Thanked 243 Times in 191 Posts
Contact Info
Send a message via Skype™ to Intrepreneur
Default Re: a href alternatives?

Quote:
Originally Posted by Barbara Eyre View Post
In HTML, the only way to do links is:

Code:
<a href="http://www.thesite.com">Anchor Text</a>
The only other thing I can think of what you are trying to say is:

Code:
<a href="http://www.thesite.com/page.html#keyterm">Click here</a> to read up more on keyterm.
And that hops you to either further down your page or to another page on your site.
Ok, but that isn't true. I'm sure bakc when I was subscribed to Angela's backlinks there was another way she mentioned for gaining them.

Although I just can't put my finger on those methods right now, nor is Google able to help me on this one.

Seems like it could be a good post for my blog, when I find the answers :-)

Top5Best4You

500 PR2 - PR6 links for $10 with report. PM me. Instantly created, drip fed. Google friendly.
Intrepreneur is offline   Reply With Quote
Old 08-02-2009, 04:08 AM   #10
Ancient&Decrepit Warrior
War Room Member
 
Michael Tracey's Avatar
 
Join Date: Jul 2002
Location: South Africa
Posts: 4,378
Thanks: 71
Thanked 169 Times in 25 Posts
Default Re: a href alternatives?

<a name="link"></a>
<bgsound src=""loop=1>

Those are a couple I can think of 1 for sound & 1 for docs

Michael

Michael Tracey is offline   Reply With Quote
Old 08-02-2009, 05:14 AM   #11
Senior Warrior Member
War Room Member
 
Ron Killian's Avatar
 
Join Date: Jun 2007
Location: Michigan, USA.
Posts: 1,548
Blog Entries: 17
Thanks: 86
Thanked 130 Times in 104 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via MSN to Ron Killian
Default Re: a href alternatives?

As already mentioned, your talking about BBCode type code.

Largest Selection of PLR Articles on the Planet! Also Audio, PLR Ebooks, Graphics, PLR Video, Templates, PLR Websites and more with Private Label Rights.

Discover Big Profits with the FREE PLR Newsletter!
Ron Killian is online now   Reply With Quote
Old 08-02-2009, 05:17 AM   #12
One Man Army
War Room Member
 
GuerrillaIM's Avatar
 
Join Date: Jul 2008
Location: London, UK
Posts: 1,893
Thanks: 93
Thanked 314 Times in 183 Posts
Default Re: a href alternatives?

You could probably set the link by using CSS.

If you saw it in angelas packet it was probably something similar to BB code.

GuerrillaIM is offline   Reply With Quote
Old 08-02-2009, 06:04 AM   #13
Warrior Member
 
Join Date: Jun 2009
Location: Glasgow
Posts: 24
Thanks: 2
Thanked 1 Time in 1 Post
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via MSN to chazmer
Default Re: a href alternatives?

afaik it is ONLY <a href if your using HTML, you could probably set up a php script to use different coding in order to do it, but the end result would be a hyperlink reference (href) - the examples your using [url] etc. are all just ways for a peice of software (in this case a forum) to translate your link into html for itself (which inevitably means it's a href)
chazmer is offline   Reply With Quote
Old 08-02-2009, 06:15 AM   #14
HyperActive Warrior
 
s4nt0s's Avatar
 
Join Date: Nov 2008
Location: Houston, Texas
Posts: 165
Thanks: 28
Thanked 35 Times in 20 Posts
Contact Info
Send a message via MSN to s4nt0s Send a message via Skype™ to s4nt0s
Default Re: a href alternatives?

There are a few other variations to creating anchor text.

I know there is HTML, BB code, wiki mark up, wiki mark up 2 and maybe a few others.

I will post the different varations when I get off work.
s4nt0s is offline   Reply With Quote
Old 08-02-2009, 06:48 AM   #15
Gene Yarbrough
War Room Member
 
Join Date: Oct 2005
Location: Northern Virginia
Posts: 558
Thanks: 32
Thanked 58 Times in 42 Posts
Contact Info
Send a message via Skype™ to gyar29
Default Re: a href alternatives?

You are not giving us enough information to help you. You can code a link differently than <a href> with php, javascript, whatever. But if you're coding with HTML you are pretty much stuck with href.

You may be confusing us with your [url] reference. That is BBcode. Works right here on the forum, and with many other forum generating scripts. But you say that you're not talking about a forum. BBcode can be used in some blogs that have been set up to use BBcode in comments, but it is pretty useless anywhere else.

Knowing where you're trying to add the link or at least what code, software, whatever is being used where you want to add the link will go a long way towards helping us help you. -Yeah I know, I quoted Jerry Maguire and it is just a little embarrassing. But I couldn't stop my fingers. Whatareyagonnado?-

Hoping to help,
Gene
gyar29 is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
alternatives, href

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 02:51 PM.