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