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