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