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