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