0% found this document useful (0 votes)
19 views1 page

Links and Images: HTML Lang Charset Name Content

The document contains HTML code for a web page with 5 hyperlinks to various social media sites like Google, Facebook, and Twitter that open in new tabs when clicked. It also includes an image that is not found due to an invalid file path and another remote image that is displayed.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

Links and Images: HTML Lang Charset Name Content

The document contains HTML code for a web page with 5 hyperlinks to various social media sites like Google, Facebook, and Twitter that open in new tabs when clicked. It also includes an image that is not found due to an invalid file path and another remote image that is displayed.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Links and images</title>
</head>
<body>
    <a href="https://google.com" target="_blank">go to google</a><br>
    <a href="https://facebook.com" target="_blank">go to facebook</a><br>
    <a href="https://twitter.com" target="_blank">go to twitter</a><br>
    <a href="https://linkedin.com" target="_blank">go to Linkedin</a><br>
    <a href="/tutoria5.html" target="_blank">tut 5</a><br>

    <!-- image is not present hence all text is shown -->
    <img src="harry.jpg" alt="Error loading image">
    <img src="https://source.unsplash.com/user/erondu/1600x900" alt="Remote Imag
e">
    
</body>
</html>

You might also like