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