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