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