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