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