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