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