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