Related Posts
Telugu Video Tutorials – Notes – Shortcuts
Links are the most fundamental part of the world wide web.
HTML links are hyperlinks.
There are two different kinds of links
Text link
A link is specified using HTML tag <a>.
This tag is called anchor tag and anything between the opening <a> tag and the closing </a> tag.
Specify the target in the <a href=” “>.
Syntax:-
<a href=”Document URL” … attributes-list>Link Text</a>
Text Link:-
Example:-
<html>
<body>
<a href=”http://www.google.com”>Google</a>
</body>
</html>
EXTRA PRACTICAL OUTPUT