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