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