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