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