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