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