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