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