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