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