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