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