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