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