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