-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebdev5.html
More file actions
21 lines (21 loc) · 912 Bytes
/
webdev5.html
File metadata and controls
21 lines (21 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- target="_blank" === is used to open links in new tab: -->
<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="/webdev4.html" target = "_blank">Web dev 4</a>
<img src="Naruto.webp" alt="Sorry Error In Loading Image">
<img src="sejal.jpg" alt="Sorry Image not present">
<img src="Sasuke and Naruto.jpg" alt="remote Image">
<img src="https://source.unsplash.com/user/erondu/200x300/?nature" alt="image not found">
</body>
</html>