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