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