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