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