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