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