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