-
Notifications
You must be signed in to change notification settings - Fork 1
/
first.html
23 lines (20 loc) · 891 Bytes
/
first.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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>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="/tut4.html" target="_blank">Tut 4</a>
<a href="/tut5.html" target="_blank">Tut 5</a>
<!-- Image is not present hence alt text is shown -->
<!-- <img src="harry.jpg" alt="Error loading image"> -->
<img src="https://source.unsplash.com/200x110/?nature,water" alt="remote image" width="233" height="304">
</body>
</html>