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