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