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