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