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