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