Img and Anchor tag in HTML

 <!DOCTYPE html>

<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Img and Anchor Tag</title>
</head>

<body>
    <a href="https://www.facebook.com" target="_blank">Go to Facebook</a><br><br>
    <a href="https://www.youtube.com" target="_blank">Go to Youtube</a><br><br>
    <a href="https://www.google.com" target="_blank">Go to Google</a><br><br>

    <img src="harry.jpg" alt="Error loading image"><br><br>
    <img src="image1.png" alt="Error loading image"><br><br>
    <img src="image2.jpg" alt="Error loading image"><br><br>
    <a href="../TestFolder/Paragraph.html">Go to TestFolder</a><br><br>
</body>

</html>




Comments