Skip to main content

How to Create a link in html?|What is link in html|What is purpose of link in html?


Links:

Html links are Hyper links

You click on a link and go to another page.

When you move the mouse over a link, the mouse arrow symbol will change into a hand symbol.

In this HTML two types of linkings.

1)Text linking

2)Image linking

Text Linking:

In this Four types of methods......

1)Normal Linking

2)Web Page Linking

3)Email Linking

4)Named Anchor

Example:

<html>

<head>

<title>Header</title>

</head>

<body>

<a href="form.html">Out File</a><br>

<a href="https:www.google.com">web page linking</a><br>

<a href="mailto:yuvarajkoppati@gmail.com">email linking</a><br>

</body>

</html>

Nmaed Anchor:

<html>

<head>

<title>Header</title>

</head>

<body>

<font size="12" color="orange">

<a name="up">

<center>

<a href="#home">HOME</a>|

<a href="#about">ABOUT US</a>|

<a href="#contact">CANTACT</a>

</center>

HOME:<a name="home">

Enter the content in this place <br>

ABOUT US:<a name="about"><br>

CONTACT:<a name="contact"><br>

<a href="#up">UP</a>

</font>

</body>

</html>

Comments