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