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