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