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