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