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