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