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