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