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