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