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