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