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