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