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