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