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