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