-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (70 loc) · 1.62 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE>
<html>
<head>
<title></title>
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
/* Style all font awesome icons */
.fa {
padding: 10px;
font-size: 30px;
width: 40px;
text-align: center;
text-decoration: currentColor;
margin-left: 35px;
}
.fa{
transition: all 0.3s linear;
}
/* Add a hover effect if you want */
.fa:hover {
opacity: 0.7;
background-color: lightblue;
color: black;
transform: scale(1.4);
}
/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
background: wheat;
color: rgb(113, 8, 250);
}
/* Twitter */
.fa-twitter {
background:wheat;
color: rgb(8, 140, 248);
}
/* instagram */
.fa-instagram{
background-color: wheat;
color:rgb(248, 12, 170);
}
/* youtube */
.fa-youtube{
background-color:wheat;
color: rgb(252, 21, 21);
}
/* whatsapp */
.fa-whatsapp{
background-color: wheat;
color: rgb(19, 250, 19);
}
.fa {
padding: 20px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
border-radius: 50%;
}
</style>
</head>
<!-- Add font awesome icons -->
<a href="https://www.facebook.com/profile.php?id=100073646632599" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/malikmateen918/"class="fa fa-instagram"></a>
<a href="https://twitter.com/malikmateen3546"class="fa fa-twitter"></a>
<a href="https://www.youtube.com/"class="fa fa-youtube"></a>
<a href="https://www.linkedin.com/in/malik-mateen-a07320224/"class="fa fa-linkedin"></a>
<a href="https://web.whatsapp.com/"class="fa fa-whatsapp"></a>
</html>