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