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