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