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