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