Search This Blog

HTML HyperLink Tag Example

HTML HyperLink Tag Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> HyperLink Tag Example </h2>

<a href="www.google.com"> Click For Google </a><br/><br>
<a href="Link/link.com.html"> Click For II Page </a><br/><br>

<p> the first link goto Google.com page <br> the second link goto other HTML page </p>
</body>
</html>
II File link.com.html
<!doctype html>
<html>
<head>
<title> www.kod4u.blogsopt.com </title>
</head>
<body>

<h2> HyperLink Examle </h2>
<p> When click you on link then link call this page </p>

</body>
</html>
OUTPUT
HTML HyperLink Tag Example

No comments:

Post a Comment