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