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