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