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