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