A webpage can contain various links that take you directly to other pages and even specific parts of a given page. These links are known as hyperlinks.
Hyperlinks allow visitors to navigate between Web sites by clicking on words, phrases, and images. Thus you can create hyperlinks using text or images available on a webpage.
Note: I recommend to go through a short tutorial on Understanding URL
Linking Documents
A link is specified using HTML tag . This tag is called anchor tag and anything between the opening tag and the closing tag becomes part of the link and a user can click that part to reach to the linked document. Following is the simple syntax to use tag. href="Document URL" ... attributes-list>Link Text
Example
Let's try following example which links http://www.tutorialspoint.com at your page:Click following link href="http://www.tutorialspoint.com" target="_self">Tutorials Point This will produce following result, where you can click on the link generated Tutorials Point to reach to the home page of Tutorials Point.Hyperlink Example
Click following link
Tutorials Point
Tutorials Point
The target Attribute
We have used target attribute in our previous example. This attribute is used to specify the location where linked document is opened. Following are possible options:Option | Description |
---|---|
_blank | Opens the linked document in a new window or tab. |
_self | Opens the linked document in the same frame. |
_parent | Opens the linked document in the parent frame. |
_top | Opens the linked document in the full body of the window. |
targetframe | Opens the linked document in a named targetframe. |
Example
Try following example to understand basic difference in few options given for target attribute.Click any of the following links href="/html/index.htm" target="_blank">Opens in New | href="/html/index.htm" target="_self">Opens in Self | href="/html/index.htm" target="_parent">Opens in Parent | href="/html/index.htm" target="_top">Opens in Body This will produce following result, where you can click on different links to understand the difference between various options given for target attribute.Hyperlink Example href="http://www.tutorialspoint.com/">
Use of Base Path
When you link HTML documents related to the same website, it is not required to give a complete URL for every link. You can get rid of it if you useExample
Following example makes use ofClick following link href="/html/index.htm" target="_blank">HTML Tutorial This will produce following result, where you can click on the link generated HTML Tutorial to reach to the HTML tutorial.Hyperlink Example href="http://www.tutorialspoint.com/">
Now given URL is being considered as .
Click following link
HTML Tutorial
HTML Tutorial
Linking to a Page Section
You can create a link to a particular section of a given webpage by using name attribute. This is a two step process.First create a link to the place where you want to reach with-in a webpage and name it using tag as follows:
Second step is to create a hyperlink to link the document and place where you want to reach:HTML Text Links name="top">
href="/html/html_text_links.htm#top">Go to the Top
This will produce following link, where you can click on the link generated Go to the Top to reach to the top of the HTML Text Link tutorial.Go to the Top |
Setting Link Colors
You can set colors of your links, active links and visited links using link, alink and vlink attributes of tag.Example
Save the following in test.htm and open it in any web browser to see how link, alink and vlink attributes work.alink="#54A250" link="#040404" vlink="#F40633"> Click following link href="/html/index.htm" target="_blank" >HTML Tutorial This will produce following result. Just check color of the link before clicking on it, next check its color when you activate it and when the link has been visited.Hyperlink Example href="http://www.tutorialspoint.com/">
Click following link
HTML Tutorial
HTML Tutorial
Download Links
You can create text link to make your PDF, or DOC or ZIP files downloadable. This is very simple, you just need to give complete URL of the downloadable file as follows:href="http://www.tutorialspoint.com/page.pdf">Download PDF File This will produce following link and will be used to download a file.Hyperlink Example
File Download Dialog Box
Sometimes it is desired that you want to give an option where a user will click a link and it will pop up a "File Download" box to the user in stead of displaying actual content. This is very easy and can be achieved using an HTTP header in your HTTP response.For example, if you want make a FileName file downloadable from a given link then its syntax will be as follows.
#!/usr/bin/perl # Addtional HTTP Header print "Content-Type:application/octet-stream; name=\"FileName\"\r\n"; print "Content-Disposition: attachment; filename=\"FileName\"\r\n\n"; # Open the target file and list down its content as follows open( FILE, "Note: For more detail on PERL CGI programs, go through tutorial PERL and CGI.); while(read(FILE, $buffer, 100)){ print("$buffer"); }
Post a Comment
1 comments:
thank you for nice information .
welookups html tutorial
Dear readers, after reading the Content please ask for advice and to provide constructive feedback Please Write Relevant Comment with Polite Language.Your comments inspired me to continue blogging. Your opinion much more valuable to me. Thank you.