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