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