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