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