-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
21 lines (21 loc) · 723 Bytes
/
links.html
File metadata and controls
21 lines (21 loc) · 723 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>
<head>
<title> LINKS IN HTML </title>
</head>
<body>
<a href="https://google.com" target="_self">Click here to navigate to Google</a>
<br>
<a href="others/images.html" target="_blank" >Go to Images</a>
<br>
<!--wrap a link to any element (e.g image)-->
<a href="https://yeezy.com" target="_blank" title="This will naviage to another page">
<img src="Images/Kanye West.jpeg">
</a>
<br>
<!--wrap a link to any element (e.g email address)-->
<a href="mailto:claremakaa1@gmail.com">Send Email to Clare</a>
<br>
<a href="tel:0757550746">Call Clare Makaa</a>
</body>
</html>