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