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