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