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