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