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