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