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