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