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