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