How to Create a Hyperlink in HTML?

SEOSIKHO 22:45:00
Link means  redirect to some another Location.

Anchor Tag  <a> is utilized to make a hyperlink in the html.

The area that the connection will direct to is notice by href property.

■ By default, three conditions of a hyperlink:

Unvisited Link

It looks blue and underlined.

Visited Link

It looks purple and underlined.

Active Link :

 It looks red and underline.

For Example:

1   Open Notepad  and Paste code

<!DOCTYPE html>
<html>
<body>

<a href="http://seosikho.blogspot.in/">
HTML sikho</a>

<br>

<br>

<a href="http://seosikho.blogspot.in/">
SEO Sikho </a>



</body>

</html>


Output:


When we Click HTML sikho Open the Main Blog page (http://seosikho.blogspot.in/).






Share this

Related Posts

Previous
Next Post »