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