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