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