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