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