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