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