-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
33 lines (32 loc) · 866 Bytes
/
Copy pathlinks.html
File metadata and controls
33 lines (32 loc) · 866 Bytes
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
<!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>HTML Links</title>
</head>
<body>
<p id="1">HTML Links :</p>
<a
href="https://www.google.com"
target="_self"
title="this link take you to google"
>Visit Google</a
>
<br />
<p>Link to Email address</p>
<a href="mailto:manojkumarmanu8056@gmail.com">Mail me</a>
<br />
<p>Call to a number</p>
<a href="tel:+91 8056894608">Call me</a>
<br />
<hr />
<p id="2">Create Bookmarks</p>
<a href="#1"><code>Chapter 1</code></a>
<br />
<a href="#2"><code>Chapter 2</code></a>
<br />
<a href="./text-formatting.html#3"><code>Chapter 3</code></a>
</body>
</html>