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