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