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