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