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