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