Inserting Hyperlink in HTML
Inserting Hyperlink in HTML
How to insert HYPERLINK IN HTML file ??
The main thing we remember is the both files are HTML and these are in the same folder.
The Hyperlink we can add for the image also .
The abc.html is another html file so when we click on the link this abc.html will open.
The important tag we need is <a href="">...</a>
The abc.html is another html file so when we click on the link this abc.html will open.
The important tag we need is <a href="">...</a>
Step : 1
Open your notepad and type following code for Hyperlink
<html>
<head><title>Hyperlink</title>
<body bgcolor="aqua">
<br>
<center><h1>Welcome to my webpage</h1></center>
<br>
<br>
<center><a href="abc.html">Click here</a></center>
</body>
</head>
</html>
Step : 2
Save this file as HTML file
Step : 3
Open it and click on the link.☺☺
you can see both files are in the same folder.
:-)
:-)
Comments
Post a Comment