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