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