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