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