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