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