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