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