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