In this part I will tell you about HTML Hyperlink.
What is hyperlink and how to add hyperlink?
What is hyperlink and how to add hyperlink?
- Basically we can say that hyperlink is a word or it can be an image on which when we click we jumps up to the another page for example below is a hyperlink when you click on it you will jump to another page.
- Hyperlink Click on it.
- We can add the hyperlink using the below syntax.
- <a href="url">Any Name</a>
<html>
<head>
<title>Use of Anchor Tag</title>
</head>
<body>
<h1>Use of Anchor Tag</h1>
<br>
<p>In this tutorial you will learn that what is hyperlink and how to add the hyperlink?</p>
<hr>
<!-- Below is a hyperlink -->
<a href="http://programmingskills.blogspot.in">Complete Programming Tutorials</a>
</body>
</html>
Now see the below video to learn the use of hyperlink :-
0 comments:
Post a Comment