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