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