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