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