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