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