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