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