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