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