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