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