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