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