Now, we will move onto next topic.
HTML Links
Basically, we use <a> tag to show linking. <a> states the anchor tag used for hyper linking. This anchor tag will also include " href " attribute which is specifying hyper reference.
HTML Link
<a href = "xyz.com">This is dummy content</a>
Your Code :
<html>
<head>
<title> Third Demo </title>
</head>
<body>
<a href = "http://mark-uplanguages.blogspot.in/">
This is demo to show the use of anchor tag
</a>
</body>
</html>
OUTPUT:
After clicking on the above link you will be able to see that particular page whose URL you have provided for hyper linking. As, i have mentioned my blog's URL only so output i got is
HTML Links
Basically, we use <a> tag to show linking. <a> states the anchor tag used for hyper linking. This anchor tag will also include " href " attribute which is specifying hyper reference.
HTML Link
<a href = "xyz.com">This is dummy content</a>
Your Code :
<html>
<head>
<title> Third Demo </title>
</head>
<body>
<a href = "http://mark-uplanguages.blogspot.in/">
This is demo to show the use of anchor tag
</a>
</body>
</html>
OUTPUT:
After clicking on the above link you will be able to see that particular page whose URL you have provided for hyper linking. As, i have mentioned my blog's URL only so output i got is
No comments:
Post a Comment