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