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