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