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