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