HTML program to link an external page of different web sites and link the web page to mail address

HTML program to link an external page of different web sites like yahoo.com or google.com using URL and also link the web page to your mail address. Apply tags to change colors of

links.

HTML Code

<html>
<head>
    <title>Link external websites</title>
    <style>
        a:link {
            color: red;
        }
        a:visited {
            color: green;
        }
        a:hover {
            color: pink;
        }
        a:active {
            color: black;
        }
    </style>
</head>
<body>
    <h3>Select the Search Engine</h3>
    <a href="https://www.google.com" target="_blank">Google</a><br>
    <a href="https://www.yahoo.com" target="_blank">Yahoo</a><br>
    Any queries? <a href="mailto:helpme@gmail.com?subject=Query&body=Enter your query here">Click here</a>
</body>
</html>

OUTPUT