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