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