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