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