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