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