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