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