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