1Refer link :
2https://www.programmingquest.com/2020/04/create-social-media-icon-using-html-css.html
3
4<html>
5 <head>
6 <title>Social Media Icon Example</title>
7 <!-- Adding font awesome icon library -->
8 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
9 <style>
10 .fa {
11 width: 25px;
12 padding: 20px;
13 font-size: 25px;
14 text-align: center;
15 text-decoration: none;
16 margin: 5px 2px;
17 color: white;
18 border-radius: 50%;
19 }
20
21 .fa:hover {
22 opacity: 0.7;
23 }
24
25 .fa-facebook {
26 background: #3B5998;
27 }
28
29 .fa-twitter {
30 background: #55ACEE;
31 }
32
33 .fa-google {
34 background: #dd4b39;
35 }
36
37 .fa-linkedin {
38 background: #007bb5;
39 }
40
41 .fa-youtube {
42 background: #bb0000;
43 }
44
45 .fa-instagram {
46 background: #8a3ab9;
47 }
48
49 .fa-whatsapp {
50 background: #4FCE5D;
51 }
52
53 .fa-pinterest {
54 background: #cb2027;
55 }
56
57 .fa-snapchat-ghost {
58 background: #fffc00;
59 text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
60 }
61
62 .fa-skype {
63 background: #00aff0;
64 }
65
66 .fa-github {
67 background: #000000;
68 }
69
70 .fa-dribbble {
71 background: #ea4c89;
72 }
73
74 .fa-vimeo {
75 background: #45bbff;
76 }
77
78 .fa-foursquare {
79 background: #45bbff;
80 }
81
82 .fa-stumbleupon {
83 background: #eb4924;
84 }
85
86 .fa-flickr {
87 background: #f40083;
88 }
89
90 .fa-yahoo {
91 background: #430297;
92 }
93
94 .fa-reddit {
95 background: #ff5700;
96 }
97
98 .fa-rss {
99 background: #ff6600;
100 }
101 </style>
102 </head>
103 <body>
104 <!-- Using font awesome icons -->
105 <a href="#" class="fa fa-facebook"></a>
106 <a href="#" class="fa fa-twitter"></a>
107 <a href="#" class="fa fa-google"></a>
108 <a href="#" class="fa fa-linkedin"></a>
109 <a href="#" class="fa fa-youtube"></a>
110 <a href="#" class="fa fa-instagram"></a>
111 <a href="#" class="fa fa-whatsapp"></a>
112 <a href="#" class="fa fa-pinterest"></a>
113 <a href="#" class="fa fa-snapchat-ghost"></a>
114 <a href="#" class="fa fa-skype"></a>
115 <a href="#" class="fa fa-github"></a>
116 <a href="#" class="fa fa-dribbble"></a>
117 <a href="#" class="fa fa-vimeo"></a>
118 <a href="#" class="fa fa-foursquare"></a>
119 <a href="#" class="fa fa-stumbleupon"></a>
120 <a href="#" class="fa fa-flickr"></a>
121 <a href="#" class="fa fa-yahoo"></a>
122 <a href="#" class="fa fa-reddit"></a>
123 <a href="#" class="fa fa-rss"></a>
124 </body>
125</html>
1
2 .fa {
3 padding: 20px;
4
5 font-size: 30px;
6 width: 30px;
7
8 text-align: center;
9 text-decoration: none;
10
11 border-radius: 50%;
12}