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