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