-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathlinks_and_images.html
39 lines (29 loc) · 1.91 KB
/
links_and_images.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!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>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="/tut5.html" target="_blank">Tut 5</a><br>
<!--If Image is Not present then alt text will execute -->
<!-- <img src="lokesh.jpg" alt="Error loading image"> -->
<!-- <img src="https://source.unsplash.com/random/1920x1080/?wallpaper,landscape"target ="_blank" alt="Error in Loading Image"><br> -->
<iframe width="560" height="315" src="https://www.youtube.com/embed/bqGtrvcR5ls" >
</iframe>
<!-- <video src="https://www.youtube.com/watch?v=bqGtrvcR5ls"></video> -->
<img src="https://source.unsplash.com/random/1920x1080/?wallpaper,landscape"target ="_blank" alt="Error in Loading Image"><br>
<img src="https://source.unsplash.com/1920x1080/?nature,water"target ="_blank" alt="Error in Loading Image"><br>
<img src="https://source.unsplash.com/1920x1080/?nature,animals"target ="_blank" alt="Error in Loading Image"><br>
<img src="https://source.unsplash.com/1920x1080/?nature,snow"target ="_blank" alt="Error in Loading Image"><br>
<img src="https://source.unsplash.com/1920x1080/?nature,forest"target ="_blank" alt="Error in Loading Image"><br>
<img src="https://source.unsplash.com/1920x1080/?nature,mountains"target ="_blank" alt="Error in Loading Image"><br>
<img src="https://source.unsplash.com/1920x1080/?nature,plateau"target ="_blank" alt="Error in Loading Image"><br>
</body>
</html>