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