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