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