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