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