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