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