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