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