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