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