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