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