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