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