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