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