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