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