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