-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathT_3.html
More file actions
21 lines (20 loc) · 896 Bytes
/
T_3.html
File metadata and controls
21 lines (20 loc) · 896 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>Link 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="/T_#.html"target="_blank">tut 3</a>
<a href="/T_1.html"target="_blank">tut 1</a>
<img src="F:\Neeraj( jaipur)\IMG_20210305_223617.jpg" alt="Error loading Image" >
<img src="C:\Users\BASANT BORANA\Desktop\download.jfif" alt="Error">
<img src="https://source.unsplash.com/600x900/?nature,water" alt="Remote Image">
</body>
</html>