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