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