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