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