HI WELCOME TO Sirees

HTML External Links

  • HTML Link - External HTML Links is linked to external web page. This link is may be absolute path or relative link path.
  • <a> tag is used for anchor name which is referred link to another web page.
  • External link is great future to drive a webpage one to another and useful for surf many webpage in website.

Example

<html>
<head>
</head>
<body>
  <a href="html.php">HTML</a>
  <br />
  <br />
  <a href="css.php">CSS</a>
  <br />
  <br />
  <a href="javascript.php">Java Script</a>
  <br />
</body>
</html>