Add Link in Simple HTML

 <!DOCTYPE html>

<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Links</title>
    </head>
    <body>
        <a href="https://google.co.in" target="_blank">Go to Google</a><br><br><br>
        <a href="https://www.youtube.com/" target="_blank">Go to youtube</a>
        <br><br>
        <a href="thankyou.html">Thank You</a><br><br>
        <a href="./pages/thankyoupages.html">Thankyoupages</a>
        <p>Click here to go to <a href="https://google.co.in" target="_black"
             title="Google is one of the most popular search engine">Google</a></p>
    </body>
</html>

Comments