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