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