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