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