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