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