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