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