-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththird.html
29 lines (22 loc) · 1.19 KB
/
third.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
<!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>
<!-- for embedded the links in body using anchor tags -->
<a href="https://goggle.com" target="_blank">go to goggle</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="https://instagram.com" target="_blank">go to instagram </a> <br>
<a href="second.html" target="_blank">second</a> <br>
<a href="https://unsplash.com/photos/1XCACz2eMzY">unplash</a>
<!-- if image is not present then alt text is shown -->
<!-- <img src="harry.jpg" alt="error loading image"> -->
<img src="https://images.unsplash.com/photo-1520048480367-7a6a4b6efb2a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=146&q=100" alt="error" width=" 210" height="60">
<!-- in html width and height is not recommended to change while it is in css (for beauty) -->
</body>
</html>