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