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