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