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