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