Page 84 - Touchpad_Plus_V3.2_Class 8
P. 84
<A HREF = "Flower.html"> Back </A>
</FONT>
</BODY>
</HTML>
When we click on any link, we will reach to linked section, here, we have clicked on About Lotus
as shown:
Output
Clickipedia
To create a hyperlink to an email address, the mailto: protocol must precede the recipient's
email address. For example:
<A HREF="mailto:orangeeducation123@gmail.com">Demo</A>
You can also use various CSS properties to change the color of hyperlinks in different states.
There are mainly four states of hyperlinks, which are link, visited link, hover, and active. Using
the following CSS properties, you can change the look and style of hyperlinks in different states:
a:link: It is used to set the style for an unvisited link.
a:visited: It is used to set the style for a link that the user has visited.
a:hover: It is used to set the style for a link when the mouse pointer moves over it.
a:active: It is used to set the style for a link when it is clicked.
Let us create a web page to use all these properties.
<!DOCTYPE html>
A link in HTML is like a bridge that
<HTML>
connects the text to the destination
<HEAD>
and invites users to cross over.
<STYLE>
a:link, a:visited {
BACKGROUND-COLOR: PINK;
COLOR: RED;
82 Plus (Ver. 3.2)-VIII

