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