How are hyperlinks inserted in the HTML webpage?

 You can insert a hyperlink in the HTML webpage by using the following code:

<!DOCTYPE html>

<html>

  <body>

    <h2>HTML Hyperlink Example</h2>

    <a href=”url”>link text</a>

  </body>

</html>


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *