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