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