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