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