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