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