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