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