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