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