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