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