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