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