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