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