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