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