Use on the webTotal Use [ 4581 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/c1a8fb0c9bdc2d3761e2486c67f4519d?family=Icons+Social+Media+13" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/c1a8fb0c9bdc2d3761e2486c67f4519d?family=Icons+Social+Media+13);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Icons Social Media 13";
src: url("https://db.onlinewebfonts.com/t/c1a8fb0c9bdc2d3761e2486c67f4519d.eot");
src: url("https://db.onlinewebfonts.com/t/c1a8fb0c9bdc2d3761e2486c67f4519d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c1a8fb0c9bdc2d3761e2486c67f4519d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c1a8fb0c9bdc2d3761e2486c67f4519d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c1a8fb0c9bdc2d3761e2486c67f4519d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c1a8fb0c9bdc2d3761e2486c67f4519d.svg#Icons Social Media 13")format("svg");
}
2CSS rules to specify fonts
font-family: "Icons Social Media 13";