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