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