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