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