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