-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML_third.html
More file actions
20 lines (19 loc) · 808 Bytes
/
HTML_third.html
File metadata and controls
20 lines (19 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>
<!--Inserting links-->
<a href="http://Google.com">Go to google</a><br>
<a href="http://Facebook.com" target="_blank">Go to Facebook</a><br> <!--Setting target attribute to _blank we allow link to open in new page-->
<hr>
<a href="/second.html" target="_blank">Tutorial on Heading and Paragraph</a><br>
<!--Inserting images-->
<img src="image.png" alt="Displayed if image fails to load.">
<img src="https://source.unsplash.com/user/erondu/1600x900" alt="Displayed if image fails to load.">
</body>
</html>