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