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