<!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">click here to open google</a> <br>
<a href="https://youtube.com"target="_blank">click here to open youtube</a> <br>
<a href="https://twitter.com"target="_blank">click here to open twitter</a> <br>
<a href="https://instagram.com"target="_blank">click here to open insta</a> <br>
<a href="/tut1.html" target="_blank">tutorial 1</a> <br>
<a href="/tut2.html" target="_blank">tutorial 2</a> <br>
<!-- if image is not present/load then alt text is shown -->
<!-- <img src="" alt="Please wait your website is loading"> -->
<img src="https://source.unsplash.com/user/erondu/800x400" alt="Please wait your website is loading">
</body>
</html>