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