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