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