Img and Anchor tags | Web Development
<!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="raaz.html" target="_blank">go to raaz</a><br>
<!-- image is not present hence alt text is showing -->
<img src="https://source.unsplash.com/collection/190727/1600x900" alt="Error loading image">
</body>
</html>
Comments
Post a Comment