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