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