Page 177 - Webapplication11_C11_Flipbook
P. 177
</p>
<a href="#top">Back to Top of Page</a>
</body>
</html>
External Linking
To connect two html webpages, an external link is utilised. External links are formed when you want to go to another
page or URL by clicking on a link on a webpage. The anchor tag in html is used to create an external link.
Syntax:
<a href= "Pagename.html or URL"> text visible on link </a>
Example:
<! DOCTYPE html>
<html>
<head>
<title> External link example</title>
</head>
<body>
<h1> This page creates external links in html webpage</h1>
<br>
<a href= https://www.orangeeducation.in/> URL external link </a>
</body>
</html>
Website Building Using HTML and CSS 175

