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