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