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