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