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