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