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