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