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