Sunday 27 March 2016

Create an HTML page with external and internal link?

Code:

 Internal and external.html

<!DOCTYPE html>
<html>
<head>
    <title>Internal and External links</title>
</head>
<body>
<center><h1>Internal and External links</h1>
<h2>Internal link</h2>
<a href="#internal">Click ME</a>
<h2>External link</h2>
<a href="External.html">Click ME</a>
<h3 id="internal">
<br><br><br>
    When you are going to click on the link 'Click ME' behind the heading internal link which will display this section. If you want to check this, please resize your browser.
<br><br><br>
</h3>
</center>
</body>
</html>



External.html


<!DOCTYPE html>

<html>
<head>
<title>External link</title>
</head>
<body>
<h1>This is the page which is linked as external</h1>
<a href="Internal and external links.html">Back</a>
<h3>The above link is an external link of this page</h3>
</body>
</html>

Output:

 internal and external.html

 External.html


No comments:

Post a Comment