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