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