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