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