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