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