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