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