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