• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to make the short cut of this links,any one guide me

 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
http://www.google.com/intl/en/mobile/mail/#utm_source=en-cpp-g4mc-gmhp&utm_medium=cpp&utm_campaign=en



this is the address i want to write different like : see here or click on this link.how it is possible to show to other user so that they can click on the link like
see here

or

click on the link

instead of clicking on the

http://www.google.com/intl/en/mobile/mail/#utm_source=en-cpp-g4mc-gmhp&utm_medium=cpp&utm_campaign=en


i am waiting for your reply


thanks
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You mean this:



I think you should read through this: http://www.w3schools.com/html/html_links.asp

Eric
 
ajay verma
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
see the example like: log out
when you click on "log out " how it is taking the address like:

http://www.javaranch.com

you replied the solution,but it is different

kindly see in the javaranch page,the whole page contains many hyperlink (means they are creating the shortcut of hyperlink) ,

you just click on on hyperlink button and see,one option will come like:

open
open in new window

save target as..
print target
create shortcut
add to favourite
properties



how it is possible

kindly guide me.......



thank you
 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The answer given was correct. The dropdown options are part of your browser, not any code on the page. Look at it this way:

<a href="put any really long link address inside quotes in this tag">Click Here</a>

what ever words appear between <a href=""> and </a> are what appears to the user as the link. In this case the words are 'click here'.

w3schools are where you need to be. They've got examples that demonstrate how all the html tags work.

G
 
reply
    Bookmark Topic Watch Topic
  • New Topic