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