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