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