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