-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSocial icon.php
60 lines (53 loc) · 1.38 KB
/
Social icon.php
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.fa {
padding:20px;
font-size:20px;
text-align:center;
margin: 5px 2px;
border-radius:50%;
text-decoration:none;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-twitter {
background: #55ACEE;
color: white;
}
.fa-google-plus{
background: #dd4b39;
color: white;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-youtube {
background: #bb0000;
color: white;
}
.fa-instagram {
background: #125688;
color: white;
}
</style>
</head>
<body>
<!-- Add font awesome icons -->
<a href="https://www.facebook.com/" class="fa fa-facebook"target="blank"title="facebook"></a>
<a href="https://twitter.com/"class="fa fa-twitter"target="blank"title="twitter"></a>
<a href="https://google-plus.com/" class="fa fa-google-plus"target="blank"title="google-plus"></a>
<a href="https://linkedin.com/" class="fa fa-linkedin"target="blank"title="linkedin"></a>
<a href="https://youtube.com/" class="fa fa-youtube"target="blank"title="youtube"></a>
<a href="https://instagram.com/" class="fa fa-instagram"target="blank"title="instagram"></a>
</body>
</html>