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