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