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