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