-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha_tag.html
41 lines (37 loc) · 1.47 KB
/
a_tag.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
31
32
33
34
35
36
37
38
39
40
41
<!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>Anchor tag</title>
<style>
html {
font-family: sans-serif;
}
bdi {
}
.name {
color: red;
}
</style>
</head>
<body>
<a href="https://www.google.com" referrerpolicy="same-origin" target="_blank">Google </a><br><p>Target Blank </p>
<a href="https://www.google.com" referrerpolicy="same-origin" target="_self">Google </a> <p>Target self</p>
<a href="https://www.google.com" referrerpolicy="same-origin" target="_parent">Google </a> <p>Target _parent</p>
<a href="https://www.google.com" referrerpolicy="same-origin" target="_top">Google </a> <p>Target _top</p>
<a href="mailto:nareshsisodiya1996@gmail.com"> mail to naresh</a>
<a href="tel:+918058956298">call to naresh</a><br>
<a href="https://github.com/imnaresh96">
<img src="C:\Users\DELL\Downloads\naresh.jpg" alt="naresh" height="300px"></img>
<ul>
<li><bdi class="name">Evil Steven</bdi>: 1st place</li>
<li><bdi class="name">François fatale</bdi>: 2nd place</li>
<li><span class="name">تیز سمی</span>: 3rd place</li>
<li><bdi class="name">الرجل القوي إيان</bdi>: 4th place</li>
<li><span class="name" dir="auto">تیز سمی</span>: 5th place</li>
</ul>
</a>
</body>
</html>