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