Learn C language

Easy to learn C language tutorials

Learn C++ language

Easy to learn C++ language tutorials

Learn Core Java language

Easy to learn Java language tutorials

Learn HTML

Easy to learn HTML tutorials

Learn CSS

Easy to learn CSS tutorials

Learn ASP.NET

Easy to learn ASP.NET tutorials

Showing posts with label Anchor Tag. Show all posts
Showing posts with label Anchor Tag. Show all posts

Tuesday, July 30, 2013

[Part-3] HTML : Hyperlink Tutorial


In this part I will tell you about HTML 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 Code :-

<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 :-