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