Use on the webTotal Use [ 4231 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6cc9c10511bfb7b64341ac7335fa6692?family=Socialico+Plus+Plus" 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/6cc9c10511bfb7b64341ac7335fa6692?family=Socialico+Plus+Plus);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Socialico Plus Plus";
src: url("https://db.onlinewebfonts.com/t/6cc9c10511bfb7b64341ac7335fa6692.eot");
src: url("https://db.onlinewebfonts.com/t/6cc9c10511bfb7b64341ac7335fa6692.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6cc9c10511bfb7b64341ac7335fa6692.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6cc9c10511bfb7b64341ac7335fa6692.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6cc9c10511bfb7b64341ac7335fa6692.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6cc9c10511bfb7b64341ac7335fa6692.svg#Socialico Plus Plus")format("svg");
}
2CSS rules to specify fonts
font-family: "Socialico Plus Plus";