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