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