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