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