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