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