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