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