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