HTML Hyperlinks
There is a common practice the specify the the web link in the webpage.The Link acts as a pointer to some web or some resource.Use the hyper links in the webpage allow page to link logically with other page.
We can use the hyperlinks by using a tag <a>and by specified the URL for href.The be assigned to href the specifies the the target of the link.
There is a common practice the specify the the web link in the webpage.The Link acts as a pointer to some web or some resource.Use the hyper links in the webpage allow page to link logically with other page.
We can use the hyperlinks by using a tag <a>and by specified the URL for href.The be assigned to href the specifies the the target of the link.
Syntax
<a href='link url'>name of link</a>
Example
<html> <head> <title> HTML Hyperlinks </title> </head> <body> <a href='http://cprogramtutorials.blogspot.in'>Online tutorial</a> </body> </html> |
Online tutorial
0 comments:
Post a Comment