-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanchor-tag.html
42 lines (40 loc) · 870 Bytes
/
anchor-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
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Anchor link tag</title>
<style type="text/css">
.at
{
background-color: yellow;
}
.at1
{
text-align: center;
font-size: 30px;
height: 100vh;
}
#ht{
text-align: center;
}
</style>
</head>
<body>
<div class="at">
<h1 id="ht" style="color: black;">Anchor Tag to Create a Link</h1>
<div class="at1">
<a href="https://www.facebook.com">First link-Click here to go to Facebook website</a>
<br>
<br>
<a href="https://www.instagram.com">Second link-Click here to go to Instagram website</a>
<br>
<br>
<a href="https://twitter.com">Third link-Click here to go to Twitter website</a>
<br>
<br>
<a href="https://www.youtube.com">Fourth link-Click here to go to Youtube website</a>
</div>
</div>
</body>
</html>