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