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