forked from chinmay021/web-development-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut6.html
More file actions
18 lines (18 loc) · 759 Bytes
/
tut6.html
File metadata and controls
18 lines (18 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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="/tut4.html" target="_blank">tut 4</a><br>
<a href="/tut5.html" target="_blank">tut 5</a>
<!-- image is not present hence alt text is shown -->
<!-- <img src="chinmay.jpg" alt="Error loading image"> -->
<img src="https://source.unsplash.com/user/erondu/510x500" alt="remote image" width="233" height="34 ">
</body>
</html>