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