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