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