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