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