-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTUT3.html
30 lines (25 loc) · 1.04 KB
/
TUT3.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
<!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 & IMAGES</title>
</head>
<!-- <body>
anchor (a) tag is used to embed the link to your webpage -->
<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://Linkedin.com" target=_blank>Go to Linkedin</a><br>
<a href="https://github.com" target=_blank>Go to Github</a> <br>
<!-- target=_balnk OPENS THE LINK ON THE NEW PAGE/TAB -->
<!-- LET'S CREATE INTERNAL LINKING ON THE SITE (EXISTING FILES) -->
<a href="/Orderdlist.html"target=_blank> Ordered list file </a> <br>
<a href="/TUT2.html"target=_blank> TUT2 </a> <br>
<!--IMPORTING IMAGES IN HTML -->
<img src="shiva.jpg" alt="420 ERROR!">
<br>
<hr>
<img src="https://source.unsplash.com/random/300×300 " alt="This image will visible">
</body>
</html>