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