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