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