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