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