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