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