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