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