How to link two HTML pages in HTML? Explain with example.
Answers
Answered by
7
Answer:
To insert a link, use the <a> tag with the href attribute to indicate the address of the target page. Example: <a href="http://www.google.com"> . You can make a link to another page in your website simply by writing the file name: <a href="page2. html"> .
Answered by
7
<html>
<head>
<title></title>
</head>
<body>
<a href="index. html"> Click to see other html page</a>
</body>
</html>
Similar questions