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