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