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