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