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