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