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