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