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