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