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