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