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