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