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