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