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